--- name: brave-search description: Web search via the Brave Search API. Use to retrieve search results from Brave when web lookups are needed. compatibility: Requires env. variable BRAVE_SEARCH_API_KEY and uv with Python 3.12+. --- # Brave Search ## Usage ```bash uv run --script {thisSkillDir}/scripts/brave-search.py "QUERY" [OPTIONS] --json ``` ## Options - `--count `: Maximum results to return (default: 5) - `--offset `: Offset into the result set (default: 0) - `--country `: Two letter country code - `--search-lang `: Search language code - `--safesearch `: Safe search mode - `--freshness `: Filter by recency - `--json`: Output normalized JSON - `--raw`: Output raw API response - `--help`: Show help ## Examples ```bash uv run --script {thisSkillDir}/scripts/brave-search.py "observability tools" --count 3 --json ```