From ecc
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
/ecc: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 ari1988/everything-claude-code128plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 128 plugins
Converts 'make it 20x faster' requests into bounded, measured optimization loops. Tracks variants, promotes winners, and ensures correctness gates stay green.
Runs autonomous optimization loops with 3 parallel agents per round, using shell metric commands, git worktrees, guards, and baselines to iteratively improve code performance.
Applies a measured hot-path optimization loop: locate, transform candidates, benchmark, and commit the winner. For performance regressions or reducing allocations.