AST+vector context router for AI coding agents — cut token costs 5-15x
Project description
Agent Booster
Cut AI coding agent token costs 5–15x by routing only the code that matters.
Instead of sending full source files to the model on every read, Agent Booster builds a symbol index of your codebase and returns only the functions and classes relevant to the current task.
How it works
Without Booster With Booster
───────────────── ────────────────────────────
Read executor.py smart_read executor.py + task
→ 1,881 lines (~6k tokens) → 3 matching functions (~200 tokens)
Five layers work together:
| Layer | What it does |
|---|---|
| Symbol index | tree-sitter parses every .py, .ts, .tsx, .js, .jsx file, extracts functions/classes into SQLite |
| Vector embeddings | sentence-transformers encodes each symbol for semantic search |
| Smart read | given a file + task, runs per-file vector search and returns only matching symbol line ranges |
| MCP server | exposes four tools over stdio — any MCP-compatible agent can call them |
| Platform init | one command writes the right config for Claude Code, Cursor, Windsurf, or Codex |
Installation
Requires Python 3.10+.
pip install agent-booster # symbol index + MCP tools
pip install agent-booster[embed] # + semantic vector search (recommended)
Quickstart
Step 1 — Wire up your AI tool
booster init claude # Claude Code
booster init cursor # Cursor
booster init windsurf # Windsurf
booster init codex # OpenAI Codex CLI
booster init all # all four
Each command shows exactly what files will change, asks for confirmation, then writes them. Fully reversible:
booster remove claude # or cursor, windsurf, codex, all
Run once per project, not once per session. The hooks live in
.claude/settings.jsonand.mcp.jsonat the project root. Every Claude Code session opened in this directory — any terminal window, same machine — picks them up automatically. No per-session setup needed.
Step 2 — Index your codebase
Run once from your project root. Re-run after large refactors.
booster index && booster embed
# Indexed 260 files, 1800 symbols.
# Built embeddings for 1800 symbols.
The index is stored at .booster/ (gitignored). The index is shared across all sessions.
Step 3 — Restart your AI tool
The agent-booster MCP server is now available in every session. Claude Code (and other tools) will use smart_read and search_context automatically on indexed files.
Step 4 — Track savings
booster gain
CLI reference
booster init <platform>
Writes the MCP server config and rules file for the target platform. Asks for confirmation before making any changes.
booster init claude # .mcp.json + CLAUDE.md + .claude/settings.json hook
booster init cursor # .cursor/mcp.json + .cursorrules
booster init windsurf # ~/.windsurf/mcp.json + .windsurfrules
booster init codex # ~/.codex/config.json + AGENTS.md
booster init all # all four
booster init claude --yes # skip confirmation (CI/scripts)
booster remove <platform>
Cleanly undoes everything init wrote. No residue.
booster remove claude
booster remove cursor
booster remove windsurf
booster remove codex
booster remove all
booster index
Scans all .py, .ts, .tsx, .js, .jsx files from the current directory. Extracts functions, classes, methods, and interfaces into .booster/symbols.db. Skips node_modules, .venv, __pycache__, .git, .booster, .next, dist, build.
booster index
# Indexed 260 files, 1800 symbols.
booster embed
Builds sentence-transformer vector embeddings for all indexed symbols. Required for semantic search_context calls. Uses all-MiniLM-L6-v2 (local, no data leaves your machine).
booster embed
# Built embeddings for 1800 symbols.
booster search "<query>"
Keyword search across all indexed symbols. Returns file path, line number, kind, name, and signature.
booster search "guard install"
# apps/web/src/app/settings/modules/page.tsx:99 function handleInstall function handleInstall() {
booster route "<task>"
Recommends haiku, sonnet, or opus based on task complexity — keyword signals, file count, and symbol count.
booster route "fix the guard SSE role check"
# haiku (narrow task — 0 symbol(s) in 1 file)
booster route "refactor the entire runtime compiler and DSL layer"
# opus (matches complexity keywords)
booster serve
Starts the MCP server over stdio. Called automatically by Claude Code, Cursor, Windsurf, and Codex when configured via booster init. You rarely need to run this directly.
booster gain
Shows token savings from past smart_read calls — total reads, tokens served vs. tokens saved, savings rate, and top files by savings.
Agent Booster — Token Savings Report
─────────────────────────────────────
Active days: 3
Total reads: 47
Tokens served: 12,400
Tokens saved: 89,200
Savings rate: 88%
Top files by savings:
executor.py 18,400 tokens saved (12 reads)
guard.py 14,200 tokens saved (8 reads)
MCP tools
Once booster serve is running, these four tools are available to the agent:
get_symbols(file)
Returns all indexed symbols for a file — name, kind, line range, and signature. No file read required.
Input: { "file": "apps/api/app/runtime/executor.py" }
Output: function run_workflow (lines 42-89): def run_workflow(...)
class WorkflowState (lines 91-140): class WorkflowState:
search_context(task)
Semantic vector search across all symbols in the index. Returns top 10 matches by cosine similarity. Falls back to keyword search if embeddings haven't been built.
Input: { "task": "guard install uninstall" }
Output: apps/web/src/app/settings/modules/page.tsx:99 function handleInstall — function handleInstall() {
apps/web/src/components/guard/GuardNav.tsx:13 function GuardNav — function GuardNav() {
...
smart_read(file, task)
Runs per-file vector search and returns only the source lines for matching symbols, with a header showing name and line range. If no symbols match, returns an explicit message so the model knows to fall back to a full Read rather than silently receiving the whole file.
Input: { "file": "apps/api/app/runtime/executor.py", "task": "execute output block" }
Output: # function _execute_output (lines 1165-1210)
def _execute_output(block, state, credentials, ...):
...
route_model(task, files?)
Recommends haiku, sonnet, or opus based on task complexity signals. If files is omitted, auto-detects via search_context.
Input: { "task": "fix the login redirect bug" }
Output: { "model": "haiku", "reason": "narrow task — 1 symbol in 1 file" }
What booster init claude writes
| File | Change |
|---|---|
.mcp.json |
Adds agent-booster to mcpServers |
CLAUDE.md |
Appends booster usage rules block (sentinel markers) |
.claude/settings.json |
Wires PreToolUse (Read + Grep) and UserPromptSubmit hooks |
.claude/hooks/booster-gate.py |
Blocks Read on indexed files — forces smart_read |
.claude/hooks/booster-grep-nudge.py |
Nudges semantic Grep patterns toward search_context |
.claude/hooks/booster-route.py |
Auto route_model — recommends haiku/sonnet/opus on every user turn |
booster remove claude removes all six, cleanly. No residue.
Where it fits
Agent Booster is the third layer in a three-layer token reduction stack:
Layer 3 — Agent Booster AST+semantic routing, smart file reads
Layer 2 — RTK Token compression on CLI/git/build output
Layer 1 — Prompt caching Stable context reuse (native to Claude Code + API)
Each layer is independent and addable separately.
Common questions
Does it work if I open a second terminal?
Yes. The hooks are wired into .claude/settings.json and .mcp.json in your project root — not inside a specific terminal session. Any new Claude Code window you open in this project picks them up automatically.
Do I need to run booster init again after restarting my machine?
No. booster init writes files to disk once. They persist across restarts and across sessions. The only time you re-run it is if you delete those files or switch to a new project.
Do teammates need to run booster init too?
Yes — once per developer, once per project. If you commit .mcp.json and .claude/settings.json to the repo, teammates get the hooks when they clone. They still need to run pip install agent-booster[embed] and booster index && booster embed locally, since the symbol index is gitignored.
Can I undo it completely?
Yes. booster remove claude removes all six files and cleans the settings entries. No residue.
Project layout
tools/booster/
├── README.md
├── pyproject.toml
└── booster/
├── cli.py # click commands: index, embed, search, serve, init, remove, route, gain
├── indexer.py # tree-sitter parser + SQLite symbol store + vector search
├── retriever.py # smart_read: per-file vector search → relevant line slice
├── mcp_server.py # MCP server: get_symbols, search_context, smart_read, route_model
└── stats.py # token savings tracking (booster gain)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agent_booster-0.2.7.tar.gz.
File metadata
- Download URL: agent_booster-0.2.7.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb7904425493c49da9b1732c5c1ca4202335578c5a2287d04dbcf605b1bebbbf
|
|
| MD5 |
828d8ef8a0300d81bdf77793b5a45a07
|
|
| BLAKE2b-256 |
1f2f35d89df42ea2bf60e2a6df5b2be63a11d461e3758528a7377e4362af4a7d
|
Provenance
The following attestation bundles were made for agent_booster-0.2.7.tar.gz:
Publisher:
publish-booster.yml on sseshachala/conductai
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agent_booster-0.2.7.tar.gz -
Subject digest:
cb7904425493c49da9b1732c5c1ca4202335578c5a2287d04dbcf605b1bebbbf - Sigstore transparency entry: 1683620552
- Sigstore integration time:
-
Permalink:
sseshachala/conductai@b224c01ebf3d4221560cb84b1ea8a7555ee67a3e -
Branch / Tag:
refs/tags/booster-v0.2.7 - Owner: https://github.com/sseshachala
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-booster.yml@b224c01ebf3d4221560cb84b1ea8a7555ee67a3e -
Trigger Event:
push
-
Statement type:
File details
Details for the file agent_booster-0.2.7-py3-none-any.whl.
File metadata
- Download URL: agent_booster-0.2.7-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27903b3a01332b886596b9884ca71ec0e4a204d244d4948ca4d9914aacc12332
|
|
| MD5 |
e5ce80618a6e0bd0b8c32e32fa6c7d59
|
|
| BLAKE2b-256 |
8aaad00fb30ced4ae69602810f8f22ad01aeb9eed790a289924175f0024e5545
|
Provenance
The following attestation bundles were made for agent_booster-0.2.7-py3-none-any.whl:
Publisher:
publish-booster.yml on sseshachala/conductai
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agent_booster-0.2.7-py3-none-any.whl -
Subject digest:
27903b3a01332b886596b9884ca71ec0e4a204d244d4948ca4d9914aacc12332 - Sigstore transparency entry: 1683620840
- Sigstore integration time:
-
Permalink:
sseshachala/conductai@b224c01ebf3d4221560cb84b1ea8a7555ee67a3e -
Branch / Tag:
refs/tags/booster-v0.2.7 - Owner: https://github.com/sseshachala
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-booster.yml@b224c01ebf3d4221560cb84b1ea8a7555ee67a3e -
Trigger Event:
push
-
Statement type: