What problem does it solve? Non-trivial work done by hand—bulk edits, migrations, analyses, checks—cannot be re-verified without redoing it, and reviewers must trust the author instead of rerunning an artifact. This principle replaces hand work with a deterministic tool that does or proves the job. ## Core Features & Use Cases - Lever-First Pattern: 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 tool over delegating repetitive edits to subagents; when delegation is needed, write the recipe as a shared skill outside the delegates' write scope. - Reviewable Artifacts: The tool itself is the deliverable a reviewer can rerun, turning "trust me" into "run this". - Use Case: Migrating 200 call sites to a new API—write a codemod, verify it on one file against a manual edit, then run it across the codebase and commit the script for future reruns. ## Quick Start Apply the build-the-lever principle to this migration task and produce a rerunnable codemod instead of editing files by hand.