원클릭으로
full-audit
Run all 11 audit agents in parallel, then consolidate findings with fix-planner
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run all 11 audit agents in parallel, then consolidate findings with fix-planner
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Fix bugs with regression prevention using test-first approach
Develop new features with test-first approach (TDD)
Run code quality checks and tests before committing
Validate build, environment, and dependencies before deployment
Full audit + fixes + deploy validation for production release
| name | full-audit |
| description | Run all 11 audit agents in parallel, then consolidate findings with fix-planner |
Run a comprehensive audit of the entire codebase. Use before major releases or as a weekly health check.
Spawn ALL of the following agents in parallel (single response with multiple Task calls):
| Agent | Output File | Focus |
|---|---|---|
code-auditor | .claude/audits/AUDIT_CODE.md | Code quality |
bug-auditor | .claude/audits/AUDIT_BUGS.md | Runtime bugs |
security-auditor | .claude/audits/AUDIT_SECURITY.md | OWASP deep scan |
doc-auditor | .claude/audits/AUDIT_DOCS.md | Documentation gaps |
infra-auditor | .claude/audits/AUDIT_INFRA.md | Infrastructure config |
ui-auditor | .claude/audits/AUDIT_UI_UX.md | UI/UX and accessibility |
db-auditor | .claude/audits/AUDIT_DB.md | Database performance |
perf-auditor | .claude/audits/AUDIT_PERF.md | Performance issues |
dep-auditor | .claude/audits/AUDIT_DEPS.md | Dependency health |
seo-auditor | .claude/audits/AUDIT_SEO.md | SEO optimization |
api-tester | .claude/audits/API_TEST_REPORT.md | API validation |
Each agent targets the project's source code. Provide each with a prompt like:
Audit [target directory]. Save report to [output file].
After all auditors complete, spawn:
fix-planner - Read all .claude/audits/AUDIT_*.md files and create .claude/audits/FIXES.md with prioritized action itemsFIXES.md - Prioritize based on your timelinecode-fixer - Implement P1 (critical) fixestest-runner - Verify fixes work