Skip to content
Development
Skill

/dep-audit

Audit dependency security risks

From plugin
sd0x-dev-flow
18999 skills16 agents5 hooks
Install
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill dep-audit --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/dep-audit

Context preview

The summary Claude sees to decide when to auto-load this skill.

Audit dependency security risks

SKILL.md

dep-audit.SKILL.md
name: dep-audit
description: "Audit dependency security risks"
allowed-tools: Bash(yarn audit:*), Bash(npm audit:*), Bash(pnpm audit:*), Bash(npx:*), Bash(bash:*), Read, Glob

Dependency Audit

Trigger

  • Keywords: dep audit, dependency audit, security audit dependencies, dep-audit

When NOT to Use

  • OWASP code review (use `/codex-security`)
  • Code review (use `/codex-review-fast`)
  • General security review (use `/codex-security`)

Workflow Steps

| Step | Goal | Safety | |------|------|--------| | audit | Scan dependencies for vulnerabilities | read-only |

**Failure behavior**: report-all

Task

Arguments

$ARGUMENTS
  • `--level <severity>` — Minimum reporting level (low/moderate/high/critical), default: moderate
  • `--fix` — Attempt automatic fix

Step 1: Check for audit script

Use Glob to check if `.claude/scripts/dep-audit.sh` exists in the project root.

  • **Found** → run: `bash .claude/scripts/dep-audit.sh $ARGUMENTS`
  • If script succeeds, use its output and skip to the Output section.
  • If script **fails**, treat as a real audit failure (do not silently fallback).
  • **NOT found** → skip to Step 2 (do NOT attempt to run the script).

Step 2: Fallback (no audit script)

Detect the project ecosystem and run the audit manually.

**Ecosystem detection** (check project root for manifest files):

| Manifest | Ecosystem | Audit Command | Fix Command | |----------|-----------|---------------|-------------| | `package.json` + `pnpm-lock.yaml` | Node (pnpm) | `pnpm audit --audit-level {LEVEL}` | `pnpm audit --fix` | | `package.json` + `yarn.lock` | Node (yarn) | `yarn audit --level {LEVEL}` | `yarn audit --fix` or `npx yarn-audit-fix` | | `package.json` | Node (npm) | `npm audit --audit-level={LEVEL}` | `npm audit fix` | | `pyproject.toml` | Python | `pip-audit` or `safety check` | `pip-audit --fix` | | `Cargo.toml` | Rust | `cargo audit` | `cargo audit fix` | | `go.mod` | Go | `govulncheck ./...` | _(manual fix)_ | | `build.gradle` | Java | `./gradlew dependencyCheckAnalyze` | _(manual fix)_ |

Default `{LEVEL}` is `moderate` unless `--level` argument is provided.

If `--fix` is specified, run the fix command for the detected ecosystem after audit. If no recognized manifest file exists, report an error.

Output

## Audit Results

| Severity | Count |
|----------|-------|
| Critical | 0 |
| High | 0 |
| Moderate | 0 |
| Low | 0 |

## Vulnerability Details

### [severity] Issue Title

- **Package**: package-name
- **Fix**: Available / Not available

## Gate

✅ **PASS** — No moderate or above vulnerabilities
❌ **FAIL** — Found high severity vulnerabilities

Examples

/dep-audit
/dep-audit --level high
/dep-audit --fix
Read more
Ships withsd0x-dev-flow

Language: English | 繁體中文 | 简体中文 | 日本語 | 한국어 | Español The harness layer for Claude Code. Let the model choose the path. Keep "done" verifiable. Full control plane on Claude Code. Skills-only distribution for Codex CLI and other compatible agents.

Get the whole plugin

Other skills on sd0x-dev-flow.