ruflo

⚡ Agent Booster

/docs/ecosystem--integrations/agent-booster

Agent Booster performs mechanical code edits without calling LLM APIs:

OperationLLM APIAgent BoosterSpeedup
Variable rename352ms1ms352x
Add import420ms1ms420x
Function signature380ms1ms380x
Code formatting290ms1ms290x
1000 files5.87 min1 second352x
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