What problem does it solve? Hand-applied edits, migrations, and checks cannot be re-verified without redoing the work, leaving reviewers with nothing to rerun. This Skill replaces manual work with a deterministic tool — a codemod, script, generator, or delegate skill — that a reviewer can execute to confirm the result. ## Core Features & Use Cases - Lever-First Workflow: Do the first unit by hand to learn the recipe, then build a tool that reproduces it and diff the outputs to prove correctness. - Deterministic Over Fan-Out: Prefer a single script that processes every unit over delegating hand-applied changes to subagents; when delegating, ship the recipe as a skill outside the delegates' write scope. - Intake and HOLD Gates: Stop and name the gap when the trigger, situation object, or decision to change is missing, rather than citing the principle decoratively. - Use Case: During a codebase-wide migration, write a codemod that performs the transformation, rerun it on a hand-edited sample to verify, and commit the script so reviewers can rerun it. ## Quick Start Apply the build-the-lever principle to this migration task and produce a rerunnable script instead of editing each file by hand.