What problem does it solve?
Outdated or inaccurate documentation leads to confusion, wasted time, and errors for developers and stakeholders. This skill automates the systematic review and update of all project documentation, ensuring it always reflects the current codebase state.
Core Features & Use Cases
- Comprehensive Document Review: Systematically audits
.plans, CLAUDE.md, docs, and .tasks files for accuracy and completeness.
- Git-Based Change Analysis: Identifies code changes since the last documentation update to pinpoint areas needing attention.
- Plan Status Tracking: Verifies implementation progress against plans, marking items as
✅ Done, 📋 Todo, or ⚠️ Obsolete.
- Use Case: After a major refactor or feature release, use this skill to automatically audit all related documentation, ensuring every change is reflected and all plans are correctly marked as complete or obsolete.
Quick Start
Find all documentation files
find . -name ".md" -not -path "/node_modules/*"
Check when docs were last modified
git log --follow --pretty=format:"%ad %s" --date=short -- .plans/