skills/brave-search/SKILL.md
Web search via the Brave Search API (independent, privacy-first index) without a browser. Use to research a topic, find recent news, gather sources to then WebFetch, or discover a site's pages. Reads BRAVE_SEARCH_API_KEY from ~/.claude/.env. Triggers on "brave search", "search the web for X", "research X via brave", "find sources on".
npx skillsauth add RonanCodes/ronan-skills brave-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
CLI-first web search via the Brave Search API. Independent index (not Google/Bing), good for research and for finding URLs to then read with WebFetch.
BRAVE_SEARCH_API_KEY in ~/.claude/.env (from https://api-dashboard.search.brave.com). Grep env first.export BRAVE=$(grep -E '^BRAVE_SEARCH_API_KEY=' ~/.claude/.env | cut -d= -f2-)
/ro:brave-search "query"
/ro:brave-search "query" --count 10 --freshness pw
/ro:brave-search "query" --news
Q=$(jq -rn --arg q "your query" '$q|@uri')
curl -s "https://api.search.brave.com/res/v1/web/search?q=$Q&count=10" \
-H "X-Subscription-Token: $BRAVE" -H "Accept: application/json" \
| jq -r '.web.results[] | "• \(.title)\n \(.url)\n \(.description)\n"'
News (recent): https://api.search.brave.com/res/v1/news/search?q=$Q&count=10.
Freshness param: &freshness=pd (day) / pw (week) / pm (month) / py (year).
site:example.com, and/or fetch https://example.com/sitemap.xml directly and parse the <loc> URLs./res/v1/summarizer/search) needs the summarizer-enabled key + a two-step summary call.testing
--- name: linear-pipeline description: The Fable orchestrator for a single dispatched Linear ticket. Holds almost no context itself; it receives `--issue <ID> --detached`, decides the stage sequence, and fans out a sub-agent per stage, passing forward only each stage's artifact (never re-derived, never inlined into its own context). Step zero, before any planning or stage routing, is a boundary triage against `canon/security-boundary.md` (#199): a match tags Ronan Connolly and stops the run, no
development
--- name: in-your-face description: Capture a chat-only answer into a durable artifact (markdown + HTML, PDF when cheap) and launch it automatically so the user cannot miss it. Use when user says "in your face", "don't let me lose this", "save that answer", "make that durable", or right after answering a substantive side question (a recipe, comparison, how-to, or generated prompt) that would otherwise die with the context. category: workflow argument-hint: [--no-open] [--vault <short>] [hint of
tools
One-shot headless OpenAI Codex CLI calls for background/admin AI tasks — summaries, classification, extraction, admin glue. The default engine for anything that runs AI constantly in the background (daemon-driven, per-event), because it bills the flat ChatGPT subscription instead of Claude usage or per-token API spend, and it keeps working while Claude is rate-limited. NEVER for coding — coding stays Claude. Use when a skill or daemon needs a cheap always-on AI call, when the user says "use codex", "ask codex", "codex as backup", or when building a background summarizer/classifier into a listener or loop. Reads auth from ~/.codex/auth.json (ChatGPT account, no API key).
research
Turn a warranty rejection, repair quote, or RMA email into a cited decision brief — legal read (NL/EU consumer law), is the part user-serviceable, live part and new-unit prices, repair-vs-DIY-vs-new economics, before-you-send-it checklist, deadlines. Use when the user pastes or screenshots a repair quote, warranty rejection, "not covered" email, onderzoekskosten fee, or asks "should I repair or replace this".