Update documentation to reflect recent code changes
Updates documentation to reflect recent code changes and maintain accuracy.
/plugin marketplace add hhopkins95/ai-systems/plugin install smart-docs@hhopkins-agent-systemUpdate project documentation to reflect recent code changes.
First, determine what was recently modified:
# Check recent git changes (if available)
git diff --name-only HEAD~5 2>/dev/null || echo "No git history"
# Or check for files modified today
find . -name "*.ts" -o -name "*.js" -o -name "*.py" -mtime -1 -type f 2>/dev/null | head -20
Ask the user what changes need documentation updates if unclear.
For each changed component:
# Find docs referencing a file
grep -r "filename" docs/ *.md 2>/dev/null
For each doc that needs updating:
After updating:
Summarize what was updated:
## Documentation Updates
### Updated
- path/to/doc.md - Added new feature section
- README.md - Updated installation steps
### Skipped (no changes needed)
- path/to/other.md - Content still accurate
### Suggested
- Consider documenting the new X workflow
/update-docsUpdate implementation documentation including specs, status, and best practices
/update-docsUpdate and maintain project documentation for local code changes using multi-agent workflow with tech-writer agents. Covers docs/, READMEs, JSDoc, and API documentation.