Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
brave avatar

Bx

  • 583 installs
  • 164 repo stars
  • Updated August 3, 2026
  • brave/brave-search-skills

bx is an agent skill and CLI that queries Brave Search BX endpoints and returns pre-extracted, token-budgeted web content for developers who need fast web research, RAG grounding, and fact-checking inside agent workflows

About

bx in brave/brave-search-skills is the default web search interface for AI agents, exposing Brave Search through a CLI optimized for downstream parsing and ranking. Run bx "query" for token-budgeted page extracts ready for LLM context, bx answers for synthesized explanations, or bx web for traditional result lists. The skill covers deep research, news, images, videos, places, and custom ranking modes, and documents installation via curl from the brave-search-cli install script when bx is missing locally. bx requires a Brave Search API key and is triggered for web search, browse, lookups, documentation retrieval, RAG grounding, and agentic fact-checking. Developers reach for bx when agents need structured web results instead of raw HTML scraping, especially during research sprints, API doc discovery, or grounding answers before code changes. The all-in-one design replaces ad-hoc fetch-and-parse loops with pre-extracted content sized for model context windows.

  • Brave BX search API integration
  • Structured web result retrieval
  • Agent-friendly response parsing
  • Plugin-ready query parameters
  • Retrieval automation for coding agents

Bx by the numbers

  • 583 all-time installs (skills.sh)
  • Ranked #697 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/brave/brave-search-skills --skill bx

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs583
repo stars164
Last updatedAugust 3, 2026
Repositorybrave/brave-search-skills

How do agents search the web with token-budgeted results?

Query Brave Search BX endpoints from agent plugins to retrieve structured web results optimized for downstream parsing and ranking.

Who is it for?

Agent developers who need Brave Search CLI integration with pre-extracted, context-sized web content for RAG and research loops.

Skip if: Projects that require authenticated scraping of private intranet pages without a public web index or Brave Search API access.

When should I use this skill?

User or agent needs web search, research, RAG grounding, browse, lookups, fact-checking, documentation discovery, or deep web research.

What you get

Structured Brave Search results, pre-extracted page content, synthesized answers, and ranked web snippets ready for agent context.

  • Structured search results
  • Token-budgeted page extracts
  • Synthesized answer text

Files

SKILL.mdMarkdownGitHub ↗

bx — Brave Search CLI

Use `bx` for all web searches. Run bx "query" as the default — it returns pre-extracted, token-budgeted web content ready for use. Use bx answers for synthesized explanations or bx web for traditional search results. If bx is not found, install it: curl -fsSL https://raw.githubusercontent.com/brave/brave-search-cli/main/scripts/install.sh | sh

Requires: Brave Search API Key + bx binary

>

Plans: Different subcommands may require different plans. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe

Quick Start

# Install (macOS/Linux)
curl -fsSL https://raw.githubusercontent.com/brave/brave-search-cli/main/scripts/install.sh | sh

# Configure API key (get one at https://api-dashboard.search.brave.com)
bx config set-key              # interactive (avoids shell history)
# or: export BRAVE_SEARCH_API_KEY=YOUR_KEY

# Search (default = bx context "query")
bx "your search query"

When to Use Which Command

Your needCommandWhy
Look up docs, errors, code patternsbx "query"Pre-extracted text, token-budgeted (default)
Get a synthesized explanationbx answers "query"AI-generated, cites sources, streams
Deep research on complex topicsbx answers "query" --enable-researchMulti-search iterative research
Traditional search resultsbx web "query"All result types (web, news, discussions, etc.)
Find discussions/forumsbx web "query" --result-filter discussionsForums often have solutions
Latest news / recent eventsbx news "query" --freshness pdFresh info beyond training data
Find imagesbx images "query"Up to 200 results
Find videosbx videos "query"Duration, views, creator
Local businesses / placesbx places "coffee" --location "San Francisco"200M+ POIs
Boost/filter specific domainsbx "query" --include-site docs.rsOr use --goggles for full control

Commands

CommandDescriptionOutput path
contextDefault. RAG/LLM grounding — pre-extracted web content.grounding.generic[] -> {url, title, snippets[]}
answersAI answers — OpenAI-compatible, streaming by default.choices[0].delta.content (stream)
webWeb search — all result types.web.results[], .news.results[], etc.
newsNews articles with freshness filters.results[] -> {title, url, age}
imagesImage search (up to 200 results).results[] -> {title, url, thumbnail.src}
videosVideo search with duration/views.results[] -> {title, url, video.duration}
placesLocal place/POI search (200M+ POIs).results[] -> {title, postal_address}
suggestAutocomplete/query suggestions.results[] -> {query}
spellcheckSpell-check a query.results[0].query
configManage API key and settingsset-key, show-key, path, show

Response Shapes

`bx "query"` (context — default, recommended)

{
  "grounding": {
    "generic": [
      { "url": "...", "title": "...", "snippets": ["extracted content...", "..."] }
    ]
  },
  "sources": {
    "https://example.com": { "title": "...", "hostname": "...", "age": ["...", "2025-01-15", "392 days ago"] }
  }
}

`bx answers "query" --no-stream` (single JSON response)

{"choices": [{"message": {"content": "Full answer text..."}}]}

`bx answers "query"` (streaming — default, one JSON chunk per line)

{"choices": [{"delta": {"content": "chunk"}}]}

`bx web "query"` (full search results)

{
  "web": { "results": [{"title": "...", "url": "...", "description": "..."}] },
  "news": { "results": [...] },
  "videos": { "results": [...] },
  "discussions": { "results": [...] }
}

Token Budget Control

Control output size for context (the default command):

FlagShort aliasDefaultDescription
--maximum-number-of-tokens--max-tokens8192Approximate total tokens (1024-32768)
--maximum-number-of-tokens-per-url--max-tokens-per-url4096Max tokens per URL (512-8192)
--maximum-number-of-urls--max-urls20Max URLs in response (1-50)
--maximum-number-of-snippets--max-snippets50Max snippets across all URLs
--maximum-number-of-snippets-per-url--max-snippets-per-urlMax snippets per URL
--context-threshold-mode--thresholdbalancedRelevance: strict, balanced, lenient
bx "topic" --max-tokens 4096 --max-tokens-per-url 1024 --max-urls 5 --threshold strict

Goggles — Custom Ranking

Goggles let you control which sources appear in results. Boost official docs, suppress SEO spam, or build focused search scopes. No other search tool offers this. Supported on context, web, and news.

Domain Shortcuts

# Allowlist — only results from these domains
bx "rust axum" --include-site docs.rs --include-site github.com

# Blocklist — exclude specific domains
bx "python tutorial" --exclude-site example.com

--include-site, --exclude-site, and --goggles are mutually exclusive.

Inline Rules

# Boost official docs, demote blog posts
bx "axum middleware tower" \
  --goggles '$boost=5,site=docs.rs
$boost=3,site=github.com
/docs/$boost=5
/blog/$downrank=3' --max-tokens 4096

# Allowlist mode — only include matched sites
bx "Python asyncio patterns" \
  --goggles '$discard
$boost,site=docs.python.org
$boost,site=peps.python.org'

DSL Quick Reference

RuleEffectExample
$boost=N,site=DOMAINPromote domain (N=1-10)$boost=3,site=docs.rs
$downrank=N,site=DOMAINDemote domain (N=1-10)$downrank=5,site=example.com
$discard,site=DOMAINRemove domain entirely$discard,site=example.com
/path/$boost=NBoost matching URL paths/docs/$boost=5
Generic $discardAllowlist mode — discard unmatched$discard (as first rule)

Separate rules with newlines. Full DSL: goggles-quickstart.

Piping Rules via Stdin

echo '$boost=5,site=docs.rs
$boost=5,site=crates.io
$boost=3,site=github.com' | bx "axum middleware" --goggles @- --max-tokens 4096

Use @/path/to/file to reuse a goggle across queries.

Agent Workflow Examples

Debugging an error:

bx "Python TypeError cannot unpack non-iterable NoneType" --max-tokens 4096

Corrective RAG loop:

# 1. Broad search
bx "axum middleware authentication" --max-tokens 4096
# 2. Too general? Narrow with strict threshold
bx "axum middleware tower layer authentication example" --threshold strict --max-tokens 4096
# 3. Still need synthesis? Ask for an answer
bx answers "how to implement JWT auth middleware in axum" --enable-research

Checking for breaking changes before upgrading:

bx "Next.js 15 breaking changes migration guide" --max-tokens 8192
bx news "Next.js 15 release" --freshness pm

Non-streaming answers for programmatic use:

bx answers "compare SQLx and Diesel for Rust" --no-stream

Answers via stdin (OpenAI-compatible JSON body):

echo '{"messages":[{"role":"user","content":"what are the OWASP top 10 vulnerabilities for web APIs"}]}' | bx answers -

Exit Codes

CodeMeaningAgent action
0SuccessProcess results
1Client error (bad request)Fix query/parameters
2Usage error (bad flags)Fix CLI arguments
3Auth/permission error (401/403)Check API key: bx config show-key
4Rate limited (429)Retry after delay
5Server/network errorRetry with backoff

Use Cases

  • AI agents / coding assistants: One-call web search with token-budgeted, RAG-ready content — replaces search + scrape + extract
  • Fact-checking: Verify claims against current web content with bx "query" --threshold strict
  • Documentation lookup: Search official docs with --include-site or Goggles domain boosting
  • Research: Deep multi-source research with bx answers "topic" --enable-research
  • Debugging: Search for error messages and stack traces directly
  • News monitoring: Track topics with bx news "query" --freshness pd
  • Local search: Find businesses and places with bx places "query" --location "city"

Notes

  • All output is JSON to stdout; errors go to stderr
  • Global flags: --api-key KEY, --timeout SECS (default 30), --extra KEY=VALUE (repeatable, adds arbitrary API parameters)
  • Location awareness: context and web support --lat, --long, --city, --state, --state-name, --loc-country, --postal-code, --timezone
  • Research mode: bx answers --enable-research can take up to 5 minutes; set client timeout accordingly
  • Help: bx --help for all commands; bx <command> --help for per-command flags

Related skills

How it compares

Pick bx for Brave Search CLI with token-budgeted extracts for agents; pick generic browser automation when you must interact with logged-in pages beyond public search indexes.

FAQ

What does bx return for agents?

bx returns pre-extracted, token-budgeted web content from Brave Search BX endpoints. Use bx "query" for default extracts, bx answers for synthesized explanations, or bx web for traditional ranked results.

How do you install bx?

bx installs from the brave-search-cli repository via curl -fsSL on the documented install.sh script. The skill treats bx as the default command whenever agents need web search or RAG grounding.

Does bx require an API key?

bx requires a Brave Search API key as noted in the skill readme. Agents should configure credentials before calling bx web, answers, or default query modes.

Backend & APIsresearchautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.