21 lines
411 B
Markdown
21 lines
411 B
Markdown
# Skill: Modify Code Safely
|
|
|
|
## When to Use
|
|
|
|
- Bug fixes
|
|
- Feature tweaks
|
|
- Small refactors
|
|
|
|
## Steps
|
|
|
|
1. Identify affected files and confirm scope.
|
|
2. Make minimal necessary changes.
|
|
3. Run minimal verification (see mcp/testing.md).
|
|
4. Report results concisely.
|
|
|
|
## Do Not
|
|
|
|
- Do not reformat unrelated code.
|
|
- Do not introduce new dependencies unless asked.
|
|
- Do not ask the user to self-test unless required.
|