---
name: Evolve Skill
slug: evolve-skill
category: Quality
description: Evolve Skill benchmarks a skill, identifies failing scenarios, proposes a minimal change, edits the skill, reruns the benchmark, and records an ADR. Use when a skill underperforms or a stocktake reveals a systemic gap.
github: "https://github.com/danielvm-git/bigpowers/tree/main/.kilocode/rules/evolve-skill.md"
language: Shell
stars: 173
forks: 14
install: "npx degit https://github.com/danielvm-git/bigpowers/tree/main/.kilocode/rules ~/.claude/skills/rules"
installs_to: ~/.claude/skills/rules
source_path: .kilocode/rules/evolve-skill.md
collection_size: 23
category_size: 1817
collection_url: "https://dirskills.com/collections/danielvm-git/bigpowers"
added: 2026-09-07T05:22:08.979Z
last_synced: 2026-09-07T05:22:08.979Z
canonical_url: "https://dirskills.com/skills/evolve-skill"
---

# Evolve Skill

Evolve Skill benchmarks a skill, identifies failing scenarios, proposes a minimal change, edits the skill, reruns the benchmark, and records an ADR. Use when a skill underperforms or a stocktake reveals a systemic gap.

**Install:**

```bash
npx degit https://github.com/danielvm-git/bigpowers/tree/main/.kilocode/rules ~/.claude/skills/rules
```

## README

# story: e23s03

# story: e09s01
# story: e09s05

# Evolve Skill

> **HARD GATE** — No skill change ships without benchmark score ≥ pre-change baseline. Learning is measured and versioned — never implicit.

## Loop

1. **Regression gate** — Run `bash scripts/run-verification-gates.sh` to catch mechanical regressions (compliance, sync pipeline, size budget) before spending time on benchmark evals. If golden suite fails, fix regressions first — they are pre-requisites for any capability improvement.
2. **Establish baseline** — Run `run-benchmark <skill> --baseline`. If no definition exists at `specs/benchmarks/<skill>.yaml`, create one following `specs/benchmarks/SCHEMA.md` first. Save report path in `state.yaml`. If `specs/benchmarks/reports/BASELINE-<skill>.yaml` already exists, skip this step.

3. **Identify gap** — Read the baseline report (`specs/benchmarks/reports/BASELINE-<skill>.yaml`). Find scenarios with `result: FAIL` or low `pass_at_k`. This is the measurable gap.

4. **`plan-work`** — Write a minimal change proposal targeting the failing scenarios. Include verify commands.

5. **Edit** via `craft-skill` / direct SKILL.md edit; run `bash scripts/sync-skills.sh`.

6. **Re-run benchmark** — `run-benchmark <skill>`. Compare new `pass_at_k` against baseline.
   - **IMPROVED or STABLE** → advance to step 6.
   - **REGRESSION** (`new pass_at_k < baseline`) → revert the change and loop back to step 3.

7. **Record decision** — Write `specs/adr/NNNN-evolve-<skill>.md` with before/after `pass_at_k` scores. Update `session-state`.

## Verify

→ verify: `test -d specs/benchmarks && test -f skills/run-benchmark/SKILL.md`

See [REFERENCE.md](REFERENCE.md) for ADR template.


<!-- story: e31s07 -->

---

# Evolve Skill — ADR snippet

```markdown
## ADR-XXXX: Evolve &lt;skill-name&gt;

**Status:** Accepted
**Benchmark:** before X% / after Y%
**Change:** one-sentence summary
**Evidence:** path/to/benchmark-report.md
```

Benchmark repo: `bigpowers-benchmark` — resolve the local clone on this machine; clone it from wherever your fork lives if absent. Never assume a hard-coded absolute path or a specific owner.
