Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Apply a simple code transform via agent-booster's WASM engine — sub-millisecond, deterministic, $0 (no LLM call). Companion to cost-booster-route.
Direct wrapper around agent-booster.apply() (npm agent-booster v0.2.x, exposed via agentic-flow/agent-booster). Use when a transform is already classified as Tier 1 eligible — cost-booster-route recommends whether; this skill executes.
var → const, add-types, remove-console, add-error-handling, async-await, add-logging).Do NOT use when the transform requires reasoning about intent, naming, or cross-file context — those are Tier 2/3 jobs.
Take inputs — intent (one of the 6 booster intents) and file path.
Read the source to a variable, derive the intended edit text from the intent (caller supplies).
Invoke — run from anywhere under v3/ so agent-booster resolves:
node --input-type=module -e '
import("agent-booster")
.then(async ({ AgentBooster }) => {
const booster = new AgentBooster();
const r = await booster.apply({
npx skills add ruvnet/ruflo --skill cost-booster-editHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.