What problem does it solve? Feature work often balloons into overbuilt implementations with speculative modes, providers, and configuration that nobody asked for. This Skill constrains AI-driven feature development to the smallest coherent end-to-end slice that satisfies observable acceptance criteria. ## Core Features & Use Cases - Scope Discipline: Derives explicit acceptance criteria and non-goals from the request and repository before writing code. - Architecture-First Delivery: Traces the entry point through the layers that own invariants, delivering a coherent path across responsible layers rather than a local patch. - Reuse and Refactor Judgment: Reuses fitting seams and refactors only when patching would duplicate behavior, weaken ownership, or hide root causes. - Use Case: When adding a new API endpoint to an existing service, the Skill implements only the required path through routing, domain, and persistence layers, omits speculative configuration, runs a focused proof, and stops once acceptance passes. ## Quick Start Use $lean-build to implement this feature without speculative scope.