From code-quality-orchestrator
Scans codebase for exposed secrets, dependency CVEs, and SAST issues like SQLi/XSS. Produces report with findings table, severities, and upgrade recommendations.
How this command is triggered — by the user, by Claude, or both
Slash command
/code-quality-orchestrator:security-scanFiles this command reads when invoked
The summary Claude sees in its command listing — used to decide when to auto-load this command
# /security-scan Deep security vulnerability and secret scanning. ## Usage ## Options | Option | Description | Default | |--------|-------------|---------| | `--deep` | Full deep scan (slower) | false | | `--secrets` | Only scan for secrets | false | | `--deps` | Only scan dependencies | false | | `--sast` | Only run SAST analysis | false | | `--severity=<level>` | Minimum severity | medium | | `--fail-on=<level>` | Fail on severity | high | | `--ignore=<pattern>` | Ignore paths | node_modules | ## Examples ## Scan Types ### Secret Detection - API keys (AWS, GCP, Azure, etc.) - D...
Deep security vulnerability and secret scanning.
/security-scan [options]
| Option | Description | Default |
|---|---|---|
--deep | Full deep scan (slower) | false |
--secrets | Only scan for secrets | false |
--deps | Only scan dependencies | false |
--sast | Only run SAST analysis | false |
--severity=<level> | Minimum severity | medium |
--fail-on=<level> | Fail on severity | high |
--ignore=<pattern> | Ignore paths | node_modules |
# Standard security scan
/security-scan
# Deep scan with all checks
/security-scan --deep
# Only check for exposed secrets
/security-scan --secrets
# Fail only on critical issues
/security-scan --fail-on=critical
# CI mode
/security-scan --ci --severity=high --fail-on=high
🔒 SECURITY SCAN REPORT
═══════════════════════════════════════════════════════
Secrets Detection: ✓ PASS (0 secrets found)
Dependency Vulnerabilities: ⚠ WARN (2 medium)
SAST Analysis: ✓ PASS (0 critical issues)
Findings:
┌─────────┬────────────┬─────────────────────────────┐
│ Severity│ Type │ Description │
├─────────┼────────────┼─────────────────────────────┤
│ MEDIUM │ CVE │ [email protected] - CVE-2021-23337 │
│ MEDIUM │ CVE │ [email protected] - CVE-2021-3749 │
└─────────┴────────────┴─────────────────────────────┘
Recommendations:
• Upgrade lodash to 4.17.21
• Upgrade axios to 0.21.4+
npx claudepluginhub p/lobbi-docs-code-quality-orchestrator-claude-plugins-code-quality-orchestrator/scanScans the codebase for security vulnerabilities including SAST, dependency CVEs, and configuration issues. Produces a severity-categorized 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).
/security-scanScans code for hardcoded secrets, vulnerable dependencies, and common security issues before commits and PRs.
/securityScans code for exposed secrets and vulnerabilities via the github-autopilot MCP server, reporting risk level, severity, and fixes with redacted secrets.
/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-scanRuns AgentShield security scan on agent, hook, MCP, permission, and secret surfaces. Produces a prioritized remediation plan with security grade, finding counts, and exact paths. Supports --format, --min-severity, and --fix flags.