Security Scanning
Unified security assessment for regulated industries. Modes: static (SAST with semgrep), deps (pip-audit/npm audit), secrets (gitleaks), sbom (CycloneDX). Zero tolerance for medium+ findings. Each finding includes severity, location, fix suggestion, and CWE reference.
When to Use
- Security review, pre-release gate, dependency audit, compliance reporting.
- NOT for code quality metrics -- use
/ai-quality.
- NOT for governance compliance -- use
/ai-governance.
Modes
static -- SAST
- Detect stacks -- read project files for active languages.
- Secret detection --
gitleaks detect --source . --no-git. Any finding is critical.
- Semgrep --
semgrep scan --config auto --json. Parse for rule IDs, severity, CWE.
- Manual analysis -- review what tools miss:
- Authentication on every endpoint (A01)
- Parameterized queries only (A03)
- Secrets from env/vault, never hardcoded (A02)
- HTTP security headers (A05)
- No user-controlled URLs in HTTP clients (A10)
- Classify -- severity + OWASP category per finding.
deps -- Dependency Audit
- Detect lock files --
uv.lock, package-lock.json, Cargo.lock, *.csproj.
- Run audit -- Python:
pip-audit --strict --desc. Node: npm audit --json. Rust: cargo audit --json.
- Assess exploitability -- mark unreachable paths as reduced severity with justification.
- Report with upgrade paths.
secrets -- Secret Detection
- Full scan --
gitleaks detect --source . --no-git --report-format json.
- Staged scan --
gitleaks protect --staged --no-banner.
- For each finding: file, line, rule, remediation (rotate credential, store in vault).
sbom -- Software Bill of Materials
- Generate --
cdxgen -o sbom.json --spec-version 1.5 (CycloneDX JSON).
- Validate -- all direct deps with versions, license info, package URLs.
- Flag license risks -- copyleft (GPL, AGPL) conflicting with project license.
--fix -- Auto-fix
When --fix is passed, attempt automatic remediation:
- Secrets: remove from source, add to
.gitignore, warn to rotate.
- Dependencies:
pip install --upgrade <pkg> for fixable vulns.
- Lint findings:
semgrep --autofix where rules support it.
- Report what was fixed and what requires manual intervention.
Severity Classification
| Severity |
Definition |
Gate Impact |
| Blocker |
Actively exploitable, breach imminent |
Blocks release |
| Critical |
High-impact, exploit feasible |
Blocks release |
| Major |
Significant risk, requires conditions |
Resolve before next release |
| Minor |
Low risk, defense-in-depth |
Resolve during maintenance |
Output Contract
# Security Report: [mode]
## Score: N/100
## Verdict: PASS (>=80) | WARN (60-79) | FAIL (<60)
## Findings
| # | Severity | OWASP | CWE | Description | Location | Fix |
|---|----------|-------|-----|-------------|----------|-----|
## Tool Outputs
- gitleaks: [N findings / clean]
- semgrep: [N findings / clean]
- pip-audit: [N findings / clean]
Quick Reference
/ai-security # run all modes
/ai-security static # SAST only
/ai-security deps # dependency audit only
/ai-security secrets # secret detection only
/ai-security sbom # generate SBOM
/ai-security deps --fix # audit + auto-fix
Common Mistakes
- Suppressing findings with
# nosec -- fix the root cause or use risk acceptance.
- Ignoring transitive dependency vulns -- they are still exploitable.
- Running
gitleaks detect on the full repo for pre-commit -- use gitleaks protect --staged.
Integration
- Pre-commit hook runs
gitleaks protect --staged automatically.
- Pre-push hook runs
semgrep and pip-audit.
- Release gate (
/ai-release) aggregates security results.
- Risk acceptances go to
state/decision-store.json via /ai-governance risk.
References
.ai-engineering/contexts/frameworks/ -- security and OWASP control mapping.
.ai-engineering/manifest.yml -- non-negotiables and gate thresholds.
$ARGUMENTS
1---2name: ai-security-43description: Use when scanning for security vulnerabilities: SAST, dependency audit, secret detection, and SBOM generation with OWASP mapping and CWE references.4---567# Security Scanning89Unified security assessment for regulated industries. Modes: `static` (SAST with semgrep), `deps` (pip-audit/npm audit), `secrets` (gitleaks), `sbom` (CycloneDX). Zero tolerance for medium+ findings. Each finding includes severity, location, fix suggestion, and CWE reference.1011## When to Use1213- Security review, pre-release gate, dependency audit, compliance reporting.14- NOT for code quality metrics -- use `/ai-quality`.15- NOT for governance compliance -- use `/ai-governance`.1617## Modes1819### static -- SAST20211. **Detect stacks** -- read project files for active languages.222. **Secret detection** -- `gitleaks detect --source . --no-git`. Any finding is critical.233. **Semgrep** -- `semgrep scan --config auto --json`. Parse for rule IDs, severity, CWE.244. **Manual analysis** -- review what tools miss:25 - Authentication on every endpoint (A01)26 - Parameterized queries only (A03)27 - Secrets from env/vault, never hardcoded (A02)28 - HTTP security headers (A05)29 - No user-controlled URLs in HTTP clients (A10)305. **Classify** -- severity + OWASP category per finding.3132### deps -- Dependency Audit33341. **Detect lock files** -- `uv.lock`, `package-lock.json`, `Cargo.lock`, `*.csproj`.352. **Run audit** -- Python: `pip-audit --strict --desc`. Node: `npm audit --json`. Rust: `cargo audit --json`.363. **Assess exploitability** -- mark unreachable paths as reduced severity with justification.374. **Report** with upgrade paths.3839### secrets -- Secret Detection40411. **Full scan** -- `gitleaks detect --source . --no-git --report-format json`.422. **Staged scan** -- `gitleaks protect --staged --no-banner`.433. **For each finding**: file, line, rule, remediation (rotate credential, store in vault).4445### sbom -- Software Bill of Materials46471. **Generate** -- `cdxgen -o sbom.json --spec-version 1.5` (CycloneDX JSON).482. **Validate** -- all direct deps with versions, license info, package URLs.493. **Flag license risks** -- copyleft (GPL, AGPL) conflicting with project license.5051### `--fix` -- Auto-fix5253When `--fix` is passed, attempt automatic remediation:54- Secrets: remove from source, add to `.gitignore`, warn to rotate.55- Dependencies: `pip install --upgrade <pkg>` for fixable vulns.56- Lint findings: `semgrep --autofix` where rules support it.57- Report what was fixed and what requires manual intervention.5859## Severity Classification6061| Severity | Definition | Gate Impact |62|----------|-----------|-------------|63| Blocker | Actively exploitable, breach imminent | Blocks release |64| Critical | High-impact, exploit feasible | Blocks release |65| Major | Significant risk, requires conditions | Resolve before next release |66| Minor | Low risk, defense-in-depth | Resolve during maintenance |6768## Output Contract6970```markdown71# Security Report: [mode]7273## Score: N/10074## Verdict: PASS (>=80) | WARN (60-79) | FAIL (<60)7576## Findings77| # | Severity | OWASP | CWE | Description | Location | Fix |78|---|----------|-------|-----|-------------|----------|-----|7980## Tool Outputs81- gitleaks: [N findings / clean]82- semgrep: [N findings / clean]83- pip-audit: [N findings / clean]84```8586## Quick Reference8788```89/ai-security # run all modes90/ai-security static # SAST only91/ai-security deps # dependency audit only92/ai-security secrets # secret detection only93/ai-security sbom # generate SBOM94/ai-security deps --fix # audit + auto-fix95```9697## Common Mistakes9899- Suppressing findings with `# nosec` -- fix the root cause or use risk acceptance.100- Ignoring transitive dependency vulns -- they are still exploitable.101- Running `gitleaks detect` on the full repo for pre-commit -- use `gitleaks protect --staged`.102103## Integration104105- Pre-commit hook runs `gitleaks protect --staged` automatically.106- Pre-push hook runs `semgrep` and `pip-audit`.107- Release gate (`/ai-release`) aggregates security results.108- Risk acceptances go to `state/decision-store.json` via `/ai-governance risk`.109110## References111112- `.ai-engineering/contexts/frameworks/` -- security and OWASP control mapping.113- `.ai-engineering/manifest.yml` -- non-negotiables and gate thresholds.114$ARGUMENTS