Converts 'make it 20x faster' requests into bounded, measured optimization loops. Tracks variants, promotes winners, and ensures correctness gates stay green.
How this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:benchmark-optimization-loopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to convert "make it 20x faster" or "try 50 recursive
Use this skill to convert "make it 20x faster" or "try 50 recursive optimizations" into a bounded measured loop that can actually improve a system.
Do not optimize until these exist:
If the user asks for an unrealistic target, keep the ambition but make the loop bounded and measurable.
Track variants like this:
Variant | Hypothesis | Command | Time | Correct? | Notes
baseline | current path | npm run job | 120s | yes | stable
batch-500 | fewer round trips | npm run job -- --batch 500 | 42s | yes | winner
parallel-8 | more workers | npm run job -- --workers 8 | 31s | no | rate limited
For recursive or hyperparameter work:
Use phrases like "best measured safe variant" instead of "global optimum" unless the search space was actually exhaustive.
A variant cannot become the new default until:
npx claudepluginhub affaan-m/ecc --plugin ecc134plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 134 plugins
Converts 'make it 20x faster' requests into bounded, measured optimization loops. Tracks variants, promotes winners, and ensures correctness gates stay green.
Transforms vague performance requests into measurable optimization loops with baselines, variants, and correctness gates.
Runs autonomous optimization loops with 3 parallel agents per round, using shell metric commands, git worktrees, guards, and baselines to iteratively improve code performance.