What problem does it solve? Developers often over-engineer solutions, skip validation, or attempt massive rewrites that introduce bugs. This Skill provides a disciplined framework for making small, verified improvements, designing error-proof systems, and building only what is actually needed. ## Core Features & Use Cases - Continuous Improvement (Kaizen): Apply incremental changes with verification at each step instead of risky big-bang rewrites. - Poka-Yoke Error Proofing: Use type systems, boundary validation, and guards to make invalid states unrepresentable and catch errors early. - Standardized Work & Just-In-Time: Follow existing codebase patterns and avoid premature abstraction or speculative features (YAGNI). - Use Case: When refactoring a payment function, apply the Skill to validate inputs at the boundary, use branded types for safety, and ship the simplest working version before iterating. ## Quick Start Ask the AI to review or refactor your code using kaizen principles, focusing on small verified improvements and error-proof design.