agent-booster
SolidWASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Agent Booster
## Overview
WASM-compiled code transformation engine for simple, well-defined tasks. Bypasses LLM inference entirely for pattern-matched transforms, achieving sub-millisecond execution at zero cost.
## When to Use
- Simple, deterministic code transforms
- 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`
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
smart-routing
Complexity-based task routing with Q-Learning optimization, Agent Booster WASM fast-path, and Mixture-of-Experts model selection.
1,160 Updated today
a5c-ai AI & Automation Solid
agent-sona-learning-optimizer
Agent skill for sona-learning-optimizer - invoke with $agent-sona-learning-optimizer
57,130 Updated today
ruvnet AI & Automation Solid
agent-performance-optimizer
Agent skill for performance-optimizer - invoke with $agent-performance-optimizer
57,130 Updated today
ruvnet AI & Automation Solid
codemod-executor
Execute automated AST-based code transformations for large-scale refactoring and migration
1,160 Updated today
a5c-ai AI & Automation Solid
agent-coder
Agent skill for coder - invoke with $agent-coder
57,130 Updated today
ruvnet