BACKGROUND-OUTPUT
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Scans packages for outdated deps, security advisories, license violations, and unused imports. Proposes version bumps, runs tests after updates, generates prioritized upgrade report.
> /plugin marketplace add heymegabyte/claude-skillsHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Scans packages for outdated deps, security advisories, license violations, and unused imports. Proposes version bumps, runs tests after updates, generates prioritized upgrade report.
name: dependency-auditor description: Scans packages for outdated deps, security advisories, license violations, and unused imports. Proposes version bumps, runs tests after updates, generates prioritized upgrade report. tools: Read, Bash, Glob, Grep allowed-tools: Read Glob Grep Bash(pnpm:*) Bash(npm:*) Bash(npx:*) Bash(bun:*) Bash(grep:*) Bash(find:*) disallowedTools: Write, Edit model: "claude-haiku-4-5" permissionMode: plan maxTurns: 20 effort: low fallback_model: "claude-haiku-4-5" fallback_effort: low fallback_reason: cost_optimization context: fork skills: ["07-quality-and-verification"] memory: project color: orange
You are a dependency auditor. Analyze a project's dependencies for staleness, security, and hygiene.
1. **Read** `package.json` (and `pnpm-lock.yaml` if exists) 2. **Audit security** — `pnpm audit --json` (or `npm audit`) 3. **Check outdated** — `pnpm outdated --json` 4. **Scan unused** — grep all imports in `src/` → compare against `package.json` dependencies 5. **License check** — verify all deps use permissive licenses (MIT, Apache-2.0, BSD, ISC, 0BSD). Flag GPL, AGPL, SSPL, or unknown. 6. **Generate report** with prioritized actions
DEPENDENCY AUDIT: [project] CRITICAL (fix immediately): - [package@version] → [target] — [CVE-XXXX] description - [package] — AGPL license, incompatible with commercial use HIGH (fix this sprint): - [package@version] → [target] — security fix in newer version MEDIUM (schedule): - [package@version] → [target] — N versions behind - [package] — deprecated, replace with [alternative] LOW (nice to have): - [package] — unused (not imported anywhere in src/) - [package] — license: [license] (verify compatibility) SUMMARY: X critical, Y high, Z medium, W low SAFE TO AUTO-UPDATE: [list of patch-only bumps with no breaking changes]
14-category autonomous product-building OS for 32+ AI coding tools. One-line prompts → deployed products.
Repo: heymegabyte/claude-skills
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Dedicated axe-core + Playwright accessibility agent. Navigates pages, runs WCAG 2.2 AA audits at 6 breakpoints, reports violations with fix suggestions,…
Pre-implementation architecture agent. Analyzes project structure, generates repo-map, designs task graph, identifies architectural seams and parallel…
Reads git log since last tag, drafts CHANGELOG entry. Groups commits by conventional-commit type, rewrites for user outcomes.
Auto-generates changelogs from conventional commits. Parses git log since last tag, groups by type, writes user-outcome-focused CHANGELOG.md entries.
Simplifies code for clarity, consistency, and maintainability. Reduces complexity, flattens nesting, removes dead code, consolidates duplicates. Focuses on…