Назад към всички

agent-booster

// WASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.

$ git log --oneline --stat
stars:384
forks:73
updated:March 4, 2026
SKILL.mdreadonly
SKILL.md Frontmatter
nameagent-booster
descriptionWASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.
allowed-toolsRead, Write, Edit, Bash, Grep, Glob, WebFetch, WebSearch, Agent, AskUserQuestion

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

TransformDescriptionExample
var-to-constModernize variable declarationsvar x = 1 -> const x = 1
add-typesInsert TypeScript annotationsfunction f(x) -> function f(x: string)
add-error-handlingWrap in try/catchBare calls -> try/catch blocks
async-awaitConvert Promise chains.then().catch() -> async/await
extract-functionExtract code blocksInline code -> named function
inline-variableInline single-use variablesRemove intermediate vars
add-jsdocGenerate documentationBare 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