fix
Installation
SKILL.md
Security Fix Generation
Generate concrete, production-ready code fixes for security findings. This is not an advisory skill -- it produces actual code changes that resolve vulnerabilities and offers to apply them via the Edit tool.
Supported Flags
Read ../../shared/schemas/flags.md for the full flag specification.
| Flag | Fix Behavior |
|---|---|
--scope |
Identifies which findings to fix. file:<path> fixes findings in that file. Default: all unfixed findings in --scope changed. |
--depth quick |
Generate minimal fix (single-line change, no refactoring). |
--depth standard |
Fix with surrounding improvements (add validation, improve error handling). |
--depth deep |
Standard + refactor surrounding code to prevent similar issues, add defensive checks. |
--depth expert |
Deep + generate regression test, add security comments, update related code paths. |
--severity |
Only fix findings at or above this severity. |
--format |
Default text. Use json to output fix objects matching findings schema. |