What problem does it solve? Everyday coding tasks often skip basic quality steps like reading files before editing, adding type hints, or removing debug statements, leading to bugs and security issues. This Skill enforces a consistent before-during-after checklist for every code modification. ## Core Features & Use Cases - Pre-edit discipline: Requires reading the target file and understanding existing logic before making any change. - In-code safeguards: Enforces minimal changes, Python type hints, TypeScript any avoidance, and checks against injection, XSS, and path traversal vulnerabilities. - Post-completion cleanup: Verifies execution, removes debug print/console.log statements, and summarizes the change scope. - Use Case: When asked to "add a validation function to utils.py", the Skill ensures the file is read first, the change stays minimal and typed, and no leftover debug output remains. ## Quick Start Ask the assistant to implement a new feature or modify existing code, and it will follow the daily coding checklist automatically.