Run a multi-faceted quality and architecture review on your code.
Install
mkdir -p .claude/skills/audit-alo2118 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14669" && unzip -o skill.zip -d .claude/skills/audit-alo2118 && rm skill.zipInstalls to .claude/skills/audit-alo2118
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Run a comprehensive audit of a specific area of the codebase using 3 parallel expert agents. Use when asked to audit, review deeply, or check quality of a module/page/feature.Key capabilities
- →Dispatch parallel agents for bug hunting
- →Dispatch parallel agents for UX review
- →Dispatch parallel agents for architecture review
- →Consolidate findings from multiple agents
- →Prioritize issues by criticality
- →Re-audit code after fixes
How it works
The skill dispatches three specialized agents (bug-hunter, UX-reviewer, arch-reviewer) to analyze a specified codebase area, consolidates their findings, and prioritizes issues for remediation.
Inputs & outputs
When to use audit
- →Reviewing module quality
- →Identifying architectural issues
- →Auditing code patterns
About this skill
Run a comprehensive audit of: $ARGUMENTS
Process
1. Dispatch 3 parallel agents (mandatory)
Launch these 3 agents simultaneously using the Agent tool:
- bug-hunter agent — Analyze the target area for bugs, data loss risks, Supabase query safety, race conditions
- ux-reviewer agent — Check UX consistency, accessibility, style constant usage, sibling comparison
- arch-reviewer agent — Check architecture, file ownership, performance, convention compliance
Each agent must receive:
- The specific area/files to analyze
- Context about what was recently changed (if applicable)
2. Consolidate findings
Merge results from all 3 agents into a single ranked list:
- CRITICAL — Data loss, crashes, security issues
- MAJOR — Incorrect behavior, accessibility violations, broken patterns
- MINOR — Style inconsistencies, minor improvements
3. Fix all issues, starting from critical
4. Re-audit after fixes (mandatory)
Run the 3 agents again on the fixed code to verify nothing was missed and no regressions introduced.
5. Build check
Run npm run build — must pass with zero errors.
When not to use it
- →When a complete audit of a specific codebase area is not required
- →When the user does not want to use multiple expert agents for review
- →When the task is not related to code quality or bug fixing
Limitations
- →Requires the ability to launch parallel agents.
- →The audit is limited to the areas and contexts provided.
- →Requires `npm run build` to pass with zero errors after fixes.
How it compares
This skill automates a multi-faceted code audit using parallel expert agents, providing a complete review across different quality dimensions, unlike a single-agent or manual code review.
Compared to similar skills
audit side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| audit (this skill) | 0 | 3mo | No flags | Advanced |
| python-testing-patterns | 77 | 2mo | Review | Intermediate |
| dependency-upgrade | 26 | 5mo | Review | Intermediate |
| test-cases | 57 | 7mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
python-testing-patterns
wshobson
Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.
dependency-upgrade
wshobson
Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.
test-cases
cexll
This skill should be used when generating comprehensive test cases from PRD documents or user requirements. Triggers when users request test case generation, QA planning, test scenario creation, or need structured test documentation. Produces detailed test cases covering functional, edge case, error handling, and state transition scenarios.
reviewing-code
CaptainCrouton89
Systematically evaluate code changes for security, correctness, performance, and spec alignment. Use when reviewing PRs, assessing code quality, or verifying implementation against requirements.
wcag-audit-patterns
wshobson
Conduct WCAG 2.2 accessibility audits with automated testing, manual verification, and remediation guidance. Use when auditing websites for accessibility, fixing WCAG violations, or implementing accessible design patterns.
code-coverage-with-gcov
gadievron
Add gcov code coverage instrumentation to C/C++ projects