core-minimal-change-discipline
SolidOperational doctrine for scoping code changes to the minimum necessary to fulfill a task in {{PROJECT_NAME}}. Prevents scope creep, accidental regressions, and sentinel violations by requiring agents to reason explicitly about change boundaries before touching any file. Use when authoring, reviewing, or planning any code edit — especially when an existing codebase section is "close to" the task but not explicitly authorized for modification.
Install
Quality Score: 82/100
Skill Content
Details
- Author
- Canhada-Labs
- Repository
- Canhada-Labs/ceo-orchestration
- Created
- 4 weeks ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
scope-minimalism
Build restraint — how much gets built, and no more. Use before implementing a task or plan step, when deciding whether to add an abstraction, layer, wrapper, helper, or dependency, when a diff outgrows its task, and when asked to simplify or cut over-engineering.
refactor
Restructure existing code without changing its behavior, through a test-gated refactoring loop: a named target, a green suite over that target before any edit, a planned sequence of small named refactorings, and the full suite re-run after every step. Use when the user wants to refactor, restructure, clean up, simplify, or improve the design of existing code, or to apply refactoring recommendations from a code-review or architectural-analysis report. This skill changes code; it does not review code (use code-review), assess architecture (use architectural-analysis), or build new behavior test-first (use tdd). Do not use it on code inside an active tdd loop; the refactor step of tdd owns that cleanup.
coding-principles
Core behavioral principles: when to ask, when to push back, when to simplify, how to make surgical changes