Refactored commands to extract reusable skills following the Commands → Skills separation pattern. Each command is now <50 lines and references skill files for detailed knowledge. Plugins refactored: - claude-config-maintainer: 5 commands → 7 skills - code-sentinel: 3 commands → 2 skills - contract-validator: 5 commands → 6 skills - data-platform: 10 commands → 6 skills - doc-guardian: 5 commands → 6 skills (replaced nested dir) - git-flow: 8 commands → 7 skills Skills contain: workflows, validation rules, conventions, reference data, tool documentation Commands now contain: YAML frontmatter, agent assignment, skills list, brief workflow steps, parameters Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
1018 B
Markdown
40 lines
1018 B
Markdown
---
|
|
description: Full documentation audit - scans entire project for doc drift without making changes
|
|
---
|
|
|
|
# Documentation Audit
|
|
|
|
Perform a comprehensive documentation drift analysis.
|
|
|
|
## Skills to Load
|
|
|
|
- skills/drift-detection.md
|
|
- skills/doc-patterns.md
|
|
|
|
## Visual Output
|
|
|
|
```
|
|
+------------------------------------------------------------------+
|
|
| DOC-GUARDIAN - Documentation Audit |
|
|
+------------------------------------------------------------------+
|
|
```
|
|
|
|
## Process
|
|
|
|
1. **Inventory Documentation Files**
|
|
Execute `skills/doc-patterns.md` - identify all doc files
|
|
|
|
2. **Cross-Reference Analysis**
|
|
Execute `skills/drift-detection.md` - verify all references
|
|
|
|
3. **Completeness Check**
|
|
- Public functions without docstrings
|
|
- Exported modules without README coverage
|
|
- Environment variables used but not documented
|
|
- CLI commands not in help text
|
|
|
|
4. **Output**
|
|
Use format from `skills/drift-detection.md`
|
|
|
|
5. **Do NOT make changes** - audit only, report findings
|