| name | fix |
| version | 1.0.0 |
| description | Format, lint, and small repair workflow |
| triggers | ["fix","lint","format","ci"] |
| agents | ["implementer"] |
Fix
Use this skill for targeted repairs after tests, lint, formatting, typecheck, or CI fail.
Workflow
- Reproduce the failing command or inspect its exact output.
- Locate the smallest owned code path that explains the failure.
- Patch only the failing behavior or formatting issue.
- Rerun the original failing command.
- Run the smallest adjacent regression test when the fix touches shared behavior.
Evidence
- Original failing command and reason.
- Changed files and risk boundary.
- Passing rerun of the original command.
Anti-Patterns
- No broad refactor while fixing a narrow failure.
- No claiming CI is fixed without the failing command or equivalent evidence.
- No deleting tests to make the run pass.