⚡ Agent Booster
/docs/ecosystem--integrations/agent-booster
Agent Booster performs mechanical code edits without calling LLM APIs:
| Operation | LLM API | Agent Booster | Speedup |
|---|---|---|---|
| Variable rename | 352ms | 1ms | 352x |
| Add import | 420ms | 1ms | 420x |
| Function signature | 380ms | 1ms | 380x |
| Code formatting | 290ms | 1ms | 290x |
| 1000 files | 5.87 min | 1 second | 352x |
bash# Single file edit npx agentic-flow agent-booster edit \ --file src/api.ts \ --instructions "Add error handling" \ --code 'try { ... } catch (error) { ... }' # Batch rename across codebase npx agentic-flow agent-booster batch-rename \ --pattern "getUserData" \ --replacement "fetchUserProfile" \ --glob "src/**/*.ts" # Parse LLM markdown output npx agentic-flow agent-booster parse-md response.md
Use Cases:
- ✅ Variable/function renaming across files
- ✅ Adding imports, type annotations
- ✅ Code formatting, signature updates
- ❌ Complex refactoring (use LLM)
- ❌ Bug fixes requiring reasoning (use LLM)
ROI Example: 1000 edits/day saves $10/day + 5.86 minutes = $3,650/year