security-scan
Installation
SKILL.md
Security Scan
Rapid security sweep for code changes. Faster than a full /review — focused on security only.
When to Use
- Before committing code that touches auth, user input, data storage, or external APIs
- After adding new dependencies
- Quick pre-PR security gate
Scan Protocol
Step 1: Determine Scope
# Default: scan recent changes
git diff --name-only HEAD~1
# Or use provided path
Related skills