What problem does it solve? AI-generated code often suffers from over-engineering, excessive comments, deep nesting, and bloated functions. This Skill enforces pragmatic coding standards so the AI writes concise, direct, solution-focused code without unnecessary abstractions or tutorials. ## Core Features & Use Cases - Coding Standards Enforcement: Applies SRP, DRY, KISS, YAGNI, and Boy Scout principles with concrete naming, function size, and structure rules. - Anti-Pattern Prevention: Blocks common AI mistakes like commenting every line, creating one-function utils files, and building factories for two objects. - Dependency-Aware Editing: Requires checking imports and dependents before editing any file, plus a mandatory self-check before marking tasks complete. - Use Case: When asking the AI to add a feature or fix a bug, it writes the code directly, updates all dependent files in the same task, and verifies lint and type checks pass before finishing. ## Quick Start Ask the AI to implement a feature or fix a bug and it will write clean, minimal code following these standards.