What problem does it solve?
Hand-applied edits, migrations, and analyses cannot be re-verified without redoing the work, leaving reviewers with no artifact to check. This Skill enforces a working principle: for any non-trivial task, build the tool that does or proves the work so the result is deterministic and rerunnable.
Core Features & Use Cases
- Lever-First Workflow: Do the first unit by hand to learn the recipe, then build a codemod, script, or generator and prove it by diffing against the hand-done version.
- Deterministic Over Fan-Out: Prefer a single-pass script over delegating repetitive edits to subagents; when delegation is needed, write the recipe as a shared skill outside the delegates' write scope.
- Use Case: When migrating hundreds of files to a new API, write a codemod, verify it against one hand-edited file, rerun it across the codebase, and commit it so reviewers and future runs can re-execute it.
Quick Start
Apply the build-the-lever principle to this migration by writing a rerunnable codemod instead of editing each file by hand.