All skills
Skillintermediate

Full Audit Workflow

Run a comprehensive audit of the entire codebase. Use before major releases or as a weekly health check.

Claude Code Knowledge Pack7/10/2026

Overview

Full Audit Workflow

Run a comprehensive audit of the entire codebase. Use before major releases or as a weekly health check.

Phase 1: Parallel Audit

Spawn ALL of the following agents in parallel (single response with multiple Task calls):

AgentOutput FileFocus
code-auditor.claude/audits/AUDIT_CODE.mdCode quality
bug-auditor.claude/audits/AUDIT_BUGS.mdRuntime bugs
security-auditor.claude/audits/AUDIT_SECURITY.mdOWASP deep scan
doc-auditor.claude/audits/AUDIT_DOCS.mdDocumentation gaps
infra-auditor.claude/audits/AUDIT_INFRA.mdInfrastructure config
ui-auditor.claude/audits/AUDIT_UI_UX.mdUI/UX and accessibility
db-auditor.claude/audits/AUDIT_DB.mdDatabase performance
perf-auditor.claude/audits/AUDIT_PERF.mdPerformance issues
dep-auditor.claude/audits/AUDIT_DEPS.mdDependency health
seo-auditor.claude/audits/AUDIT_SEO.mdSEO optimization
api-tester.claude/audits/API_TEST_REPORT.mdAPI validation

Each agent targets the project's source code. Provide each with a prompt like:

Audit [target directory]. Save report to [output file].

Phase 2: Consolidation

After all auditors complete, spawn:

  • fix-planner - Read all .claude/audits/AUDIT_*.md files and create .claude/audits/FIXES.md with prioritized action items

Post-Audit Actions

  1. Review FIXES.md - Prioritize based on your timeline
  2. Run code-fixer - Implement P1 (critical) fixes
  3. Run test-runner - Verify fixes work
  4. Re-audit affected areas if needed