ecosystem-auditlisted
Install: claude install-skill wan-huiyan/claude-ecosystem-hygiene
# Ecosystem Audit
A comprehensive audit of the entire `~/.claude/` ecosystem that scans 9 categories of persistent
artifacts, scores each on a health scale, and produces an interactive HTML dashboard with
prioritized cleanup recommendations.
## When to Use
- User wants to know what skills are installed and which are actually used
- User wants to clean up their Claude Code environment
- User asks about ecosystem health, dormant artifacts, or storage bloat
- Monthly hygiene check (recommend running every 30 days)
- Before/after installing a batch of new skills
- When memory-hygiene or schliff:doctor findings suggest broader issues
## Architecture
This skill orchestrates parallel subagents for speed. The audit runs in 3 phases:
```
Phase 1: Scan (parallel subagents)
├── Skills: parse JSONL logs for invocations, classify by domain
├── Memory: check all project dirs, apply memory-hygiene thresholds
├── Handoffs: count, classify lifecycle state, find orphans
└── ADRs + Docs: read status fields, check links, classify
Phase 2: Score (sequential)
├── Calculate health % per category
├── Apply lifecycle scoring for worktrees
├── Cross-reference with memory-hygiene thresholds
└── Generate prioritized recommendations (P0/P1/P2)
Phase 3: Report (write files)
├── Markdown summary → docs/handoffs/ecosystem_audit_report.md
└── Interactive HTML → docs/handoffs/ecosystem_audit_report.html
```
## Phase 1: Scan
Launch 4 parallel subagents, each responsible for one sc