← Back to Skills
security-scan
Run security scan — dependency audit + secret detection + code analysis
- security
Install
~/.claude/skills/security-scan/SKILL.mdRun a comprehensive security scan on the current project (or all if $ARGUMENTS is "all"): 1. **Dependencies**: `npm audit` for known vulnerabilities 2. **Secrets**: grep for API keys, tokens, passwords in source code (not .env) 3. **Code analysis**: launch `security-engineer` agent to review auth, input validation, XSS, injection 4. **HTTPS**: check for hardcoded HTTP URLs Output a security report with severity ratings and fix recommendations.
Definition
Run a comprehensive security scan on the current project (or all if $ARGUMENTS is "all"):
- Dependencies:
npm auditfor known vulnerabilities - Secrets: grep for API keys, tokens, passwords in source code (not .env)
- Code analysis: launch
security-engineeragent to review auth, input validation, XSS, injection - HTTPS: check for hardcoded HTTP URLs
Output a security report with severity ratings and fix recommendations.