| name | security-review |
| description | Skill to perform a thorough security audit of the codebase |
Security Review Skill
Purpose
Systematically scan the codebase for security vulnerabilities and produce a prioritized report.
Checklist
🔴 Critical (Check First)
🟡 High Priority
🟢 Medium Priority
ℹ️ Low / Informational
Output Format
# Security Review Report — [Date]
## Critical Issues
[List with file:line references]
## High Priority Issues
[List with file:line references]
## Recommendations
[Prioritized action items]
Commands
npm audit --audit-level=moderate
grep -rn --include="*.js" --include="*.ts" \
-E "(password|secret|api_key|token)\s*=\s*['\"][^'\"]{8,}" src/