9-Phase Systematic Audit
- Pre-Review Setup (5-10 min)
- Install skill locally: ./scripts/install-skill.sh
- Check current version and last verified date
- Test skill discovery
- Standards Compliance (10-15 min)
- Validate YAML frontmatter (name, description, license)
- Check keyword comprehensiveness
- Verify third-person description style
- Ensure directory structure matches spec
- Official Documentation Verification (15-30 min)
- Use Context7 MCP or WebFetch to verify API patterns
- Check GitHub for recent updates and issues
- Verify package versions against npm registry
- Compare with production repositories
- Code Examples & Templates Audit (20-40 min)
- Verify import statements exist in current packages
- Check API method signatures match official docs
- Ensure schema consistency across files
- Test templates build and run
- Cross-File Consistency (15-25 min)
- Compare SKILL.md vs README.md examples
- Verify "Bundled Resources" section matches actual files
- Ensure configuration examples consistent
- Dependencies & Versions (10-15 min)
- Run ./scripts/check-versions.sh
- Check for breaking changes in package updates
- Verify "Last Verified" date is recent
- Issue Categorization (10-20 min)
- Classify by severity: π΄ Critical / π‘ High / π Medium / π’ Low
- Document with evidence (GitHub URL, docs link, npm changelog)
- Fix Implementation (30 min - 4 hours)
- Auto-fix unambiguous issues
- Ask user only for architectural decisions
- Update all affected files consistently
- Bump version if breaking changes
- Post-Fix Verification (10-15 min)
- Test skill discovery
- Verify templates work
- Check no contradictions remain
- Commit with detailed changelog
Automated Checks (via script)
The skill runs ./scripts/review-skill.sh which checks:
- β
YAML frontmatter syntax and required fields
- β
Package version currency (npm)
- β
Broken links (HTTP status)
- β
TODO markers in code
- β
File organization (expected directories exist)
- β
"Last Verified" date staleness
Manual Verification (AI-powered)
Claude performs:
- π API method verification against official docs
- π GitHub activity and issue checks
- π Production repository comparisons
- π Code example correctness
- π Schema consistency validation
---