fix-finding
Installation
SKILL.md
Fix Finding
Objective
Turn a current security finding into a minimal, validated code change. If the code is already safe, prove that and report that no change was needed.
Judge the result in this order:
- the current state is correctly classified as vulnerable, already safe, or unproven
- any fix completely closes the broken security boundary
- legitimate behavior and compatibility are preserved
- relevant repository checks pass
- the implementation follows repository conventions
- the patch contains only the scope necessary for the earlier properties
Never trade an earlier property for a later one. Minimal means the smallest repository-native change that satisfies all earlier properties, not the fewest lines.