What problem does it solve? Improving a metric like latency, bundle size, or memory often degrades into unmeasured guesses, lucky one-off samples, and stacked changes nobody can attribute. This Skill enforces a disciplined optimization loop where every change is measured by a frozen harness, kept only when it beats the spread, and reverted otherwise. ## Core Features & Use Cases - Frozen measurement harness: Builds and commits a benchmark that reports the median of at least five runs with spread, proven to separate two known-different workloads before any optimization begins. - Keep-or-revert attempt loop: Dispatches each hypothesis as one isolated change in its own git worktree, measures it, and keeps it only when the median moves past the spread with regression checks green. - Auditable decision log: Records every baseline, attempt, pivot, and stop as tab-separated rows with evidence pointers, then has a fresh delegate on a different model audit the log against transcripts and commits. - Use Case: You need p95 API latency down to 60% of baseline. Invoke the skill with the metric, target, and attempt floor; it benchmarks, tries hypotheses one at a time, reverts losers, and reports the verified final number. ## Quick Start Run /exo:hillclimb with your metric and direction, a target paired with an attempt floor, and optionally a harness command and budget, for example asking to reduce p95 latency to at most 60% of baseline over at least 10 attempts.