What problem does it solve?
This Skill eliminates the risk of unplanned, messy code edits that introduce bugs, break existing functionality, and waste development time by enforcing structured, thoughtful coding practices before any changes are made.
Core Features & Use Cases
- Pre-Edit Context Review: Requires reading full codebase context and understanding data flow before opening any files to edit.
- Simplicity-First Approach: Prioritizes the simplest working solution over complex, over-engineered alternatives.
- Surgical Targeted Changes: Modifies only the exact code required for the task, with no unrequested refactoring of adjacent code.
- Step-by-Step Verification: Validates each change produces the expected output before proceeding to the next step.
A common use case is fixing critical bugs in production modules: this Skill ensures you only edit the relevant faulty logic instead of refactoring unrelated code, and verifies the fix works with existing tests before marking the task complete.
Quick Start
Use the coder skill to fix the login timeout bug in the auth module and confirm the fix passes all existing test cases.