What problem does it solve? Non-trivial work done by hand—bulk edits, migrations, analyses, and checks—cannot be re-verified without redoing it, leaving reviewers with nothing to rerun and no proof the work is correct. ## 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 deterministic tool over delegating hand-applied changes to subagents; when fan-out is needed, write the recipe as a skill outside the delegates' write scope. - Reviewable Artifacts: The tool itself is the artifact a reviewer can read and rerun, turning "trust me" into "run this"; commit the lever when the work outlives the session. - Use Case: When migrating hundreds of files to a new API, build a codemod, verify it against one hand-edited file, and rerun it across the codebase instead of editing each file manually. ## Quick Start Apply this principle to my next non-trivial task by building a rerunnable script or codemod that performs and proves the work.