Document optimization - detect redundancy, outdated content, and suggest cleanup
Analyzes project documentation for redundancy, outdated content, and suggests cleanup actions.
/plugin marketplace add agiletec-inc/airis-agent/plugin install airis@agiletecAnalyze project documentation for optimization opportunities.
Scan for docs that can be regenerated:
PROJECT_INDEX.md - regenerate via /airis:index-repoCompare hand-written docs against auto-generated ones:
IF (hand-written doc content overlaps with auto-generated):
→ Suggest deletion (auto-generated is always fresh)
Check naming conventions and placement:
manifest.toml, justfile)README.md, CLAUDE.md)dependency-cruiser.cjs → tools/)Examine doc freshness and relevance:
Run comprehensive analysis on current project:
docs/ directoryOutput format:
# Documentation Optimization Report
## Deletion Candidates (Redundant with Auto-Generated)
- `ARCHITECTURE.md` - 80% overlap with `PROJECT_INDEX.md`
→ Can regenerate PROJECT_INDEX.md anytime with `/airis:index-repo`
## Relocation Candidates
- `dependency-cruiser.cjs` → `tools/dependency-cruiser.cjs`
## Consolidation Opportunities
- Content in `AGENTS.md` and `CLAUDE.md` has overlap in [section X]
## Keep (Unique Content)
- `README.md` - Project overview (manual)
- `CLAUDE.md` - LLM instructions (manual)
Proceed with analysis.