Documentation Sync
Check if documentation matches the current code state.
Instructions
Find recent code changes:
git log --since="30 days ago" --name-only --pretty=format: -- "*.py" "*.ts" "*.tsx" | sort -uFind related documentation:
- Search
/docs/for files mentioning changed code - Check README files near changed code
- Look for docstrings in changed files
- Search
Verify documentation accuracy:
- Do code examples still work?
- Are API signatures correct?
- Are field types up to date?
Report only actual problems:
- Only flag things that are WRONG, not missing
- Don't suggest documentation for documentation's sake
Output a checklist of documentation that needs updating