What problem does it solve? Non-trivial work done by hand is slow, inconsistent, and impossible for a reviewer to re-verify without redoing it. This Skill enforces a working principle: for any non-trivial task, build a deterministic tool (codemod, script, generator, or delegate skill) that performs or proves the work, so the result is a rerunnable artifact rather than a one-off manual effort. ## Core Features & Use Cases - Lever-First Workflow: Do the first unit by hand to learn the recipe, then build a tool that reproduces it, verified by diffing the tool's output against the hand-done version. - Tool Selection Guidance: Choose codemods or scripts for edits, generators for repetitive files, dump-to-sqlite queries for analysis, and rerunnable checks for verification. - Subagent Coordination: When fanning work out to subagents, encode the recipe, verification contract, and do-not-touch fences as a shared skill outside the delegates' write scope. - Use Case: Migrating hundreds of files to a new API? Instead of editing each file manually, write a codemod, prove it on one file against your hand edit, then rerun it across the codebase and commit it for future reruns. ## Quick Start Ask the agent to apply the build-the-lever principle to your next migration or bulk edit so it produces a rerunnable script instead of manual changes.