From audit
Scans a codebase for security vulnerabilities across dependencies, auth, input validation, data exposure, configs, and secrets. Produces prioritized findings with remediation steps.
How this command is triggered — by the user, by Claude, or both
Slash command
/audit:auditFiles this command reads when invoked
This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
## 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: 1. **Dependency vulnerabilities**: Check for known CVEs 2. **Authentication/Authorization**: Review auth implementations 3. **Input validation**: Check for injection vulnerabilities 4. **Data exposure**: Look for sensitive data leaks 5. **Configuration security**: Review security configurations 6. **Secret...
find . -name ".env*" -o -name "config.*" | head -10find . -name "*secret*" -o -name "*key*" -o -name "*password*" | head -10Perform a security audit focusing on:
Target: $ARGUMENTS (if specified, otherwise audit entire codebase)
Provide prioritized findings with remediation steps.
7plugins reuse this command
First indexed Jan 1, 2026
Showing the 6 earliest of 7 plugins
npx claudepluginhub xbim08/awesome-claude-code-plugins --plugin audit/auditScans a codebase for security vulnerabilities across dependencies, auth, input validation, data exposure, configs, and secrets. Produces prioritized findings with remediation steps.
/auditPerforms a security audit of the codebase covering dependency vulnerabilities, secrets scanning, OWASP Top 10, input validation, and auth. Produces a severity-ranked findings report with actionable fixes.
/security-auditPerforms a systematic security audit covering dependencies, authentication, input validation, data protection, secrets, error handling, infrastructure, and security headers. Produces a prioritized report with remediation steps.
/scanRuns a deterministic security scan combining native checks (secret patterns, file permissions, git tracking) with auto-detected external tools (gitleaks, pip-audit, npm audit).
/scanRuns a comprehensive security audit covering dependencies, code patterns, configuration, and OWASP Top 10 checks. Adapts to the discovered project stack.
/security-scanScans code for hardcoded secrets, vulnerable dependencies, and common security issues before commits and PRs.