All skills
Skillintermediate
audit
- Package.json dependencies: @package.json - Environment files: !`find . -name ".env*" -o -name "config.*" | head -10` - Potential security files: !`find . -name "*secret*" -o -name "*key*" -o -name "*password*" | head -10`
Claude Code Knowledge Pack7/10/2026
Overview
Context
- Package.json dependencies: @package.json
- Environment files: !
find . -name ".env*" -o -name "config.*" | head -10 - Potential security files: !
find . -name "*secret*" -o -name "*key*" -o -name "*password*" | head -10
Your task
Perform a security audit focusing on:
- Dependency vulnerabilities: Check for known CVEs
- Authentication/Authorization: Review auth implementations
- Input validation: Check for injection vulnerabilities
- Data exposure: Look for sensitive data leaks
- Configuration security: Review security configurations
- Secrets management: Ensure proper secret handling
Target: $ARGUMENTS (if specified, otherwise audit entire codebase)
Provide prioritized findings with remediation steps.