agent-booster ยท diff
git:20260507.9f5be95 to git:20260601.da7723a
34 added, 34 removed. Audit A to A.
- ---
- name: agent-booster
- description: WASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.
- allowed-tools: Read, Write, Edit, Bash, Grep, Glob, WebFetch, WebSearch, Agent, AskUserQuestion
+ ---
+ name: agent-booster
+ description: WASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.
+ allowed-tools: Read, Write, Edit, Bash, Grep, Glob, WebFetch, WebSearch, Agent, AskUserQuestion
graph:
domains: [domain:software-engineering]
skillAreas: [skill-area:agentic-loops, skill-area:orchestration-loop]
workflows: [workflow:feature-development]
topics: [topic:developer-experience]
roles: [role:tech-lead, role:backend-engineer]
---
- - High-frequency repetitive modifications
- - When latency is critical (<1ms requirement)
- - Cost-sensitive batch operations
-
- ## Supported Transforms
-
- | Transform | Description | Example |
- |-----------|-------------|---------|
- | `var-to-const` | Modernize variable declarations | `var x = 1` -> `const x = 1` |
- | `add-types` | Insert TypeScript annotations | `function f(x)` -> `function f(x: string)` |
- | `add-error-handling` | Wrap in try/catch | Bare calls -> try/catch blocks |
- | `async-await` | Convert Promise chains | `.then().catch()` -> `async/await` |
- | `extract-function` | Extract code blocks | Inline code -> named function |
- | `inline-variable` | Inline single-use variables | Remove intermediate vars |
- | `add-jsdoc` | Generate documentation | Bare functions -> JSDoc comments |
-
- ## Performance
-
- - Execution: <1ms per transform
- - Cost: $0 (no LLM invocation)
- - Speedup: 352x compared to LLM inference
- - Confidence threshold: >90% pattern match required
-
- ## Agents Used
-
- - `agents/coder/` - Fallback for unmatched patterns
-
- ## Tool Use
-
- Invoke via babysitter process: `methodologies/ruflo/ruflo-task-routing`
+ - High-frequency repetitive modifications
+ - When latency is critical (<1ms requirement)
+ - Cost-sensitive batch operations
+
+ ## Supported Transforms
+
+ | Transform | Description | Example |
+ |-----------|-------------|---------|
+ | `var-to-const` | Modernize variable declarations | `var x = 1` -> `const x = 1` |
+ | `add-types` | Insert TypeScript annotations | `function f(x)` -> `function f(x: string)` |
+ | `add-error-handling` | Wrap in try/catch | Bare calls -> try/catch blocks |
+ | `async-await` | Convert Promise chains | `.then().catch()` -> `async/await` |
+ | `extract-function` | Extract code blocks | Inline code -> named function |
+ | `inline-variable` | Inline single-use variables | Remove intermediate vars |
+ | `add-jsdoc` | Generate documentation | Bare functions -> JSDoc comments |
+
+ ## Performance
+
+ - Execution: <1ms per transform
+ - Cost: $0 (no LLM invocation)
+ - Speedup: 352x compared to LLM inference
+ - Confidence threshold: >90% pattern match required
+
+ ## Agents Used
+
+ - `agents/coder/` - Fallback for unmatched patterns
+
+ ## Tool Use
+
+ Invoke via babysitter process: `methodologies/ruflo/ruflo-task-routing`