adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Audit dependency security risks
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill dep-audit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/dep-auditContext preview
The summary Claude sees to decide when to auto-load this skill.
Audit dependency security risks
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
| Step | Goal | Safety | |------|------|--------| | audit | Scan dependencies for vulnerabilities | read-only |
**Failure behavior**: report-all
$ARGUMENTS
Use Glob to check if `.claude/scripts/dep-audit.sh` exists in the project root.
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.
## 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
/dep-audit /dep-audit --level high /dep-audit --fix
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.
Repo: sd0xdev/sd0x-dev-flow
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Architecture design and documentation. Produces 3-architecture.md with component diagrams, data flow, integration points, and architecture decisions. Reads…
Context-aware Q&A with auto context gathering. Use when: user has a quick question about codebase, git history, rules, docs, or skills during development. Not…
Industry best practices conformance audit with mandatory adversarial debate. Produces audit artifact: verdict (OK/WARN/FAIL) + gap roadmap + debate proof. Use…
Bug fix workflow. Use when: fixing bugs, resolving issues, regression fixes. Not for: new features (use feature-dev), understanding code (use code-explore).…
Bump package and plugin version in sync. Updates package.json, .claude-plugin/plugin.json, and install-state manifest to the same version. Use when: user says…