← ClaudeAtlas

milestonelisted

Project health assessment across four dimensions
lwalden/AIAgentMinder · ★ 4 · Data & Documents · score 72
Install: claude install-skill lwalden/AIAgentMinder
# /aiagentminder:milestone - Project Health Assessment Run a milestone health check to assess whether the project is on track. This is the "project standup" that solo developers don't have — a periodic review of scope, progress, complexity, and known debt. Run this at sprint boundaries, at phase transitions, or any time you want a clear picture of where the project stands. --- ## Step 1: Gather Context Read the following: 1. `docs/strategy-roadmap.md` — current phase, MVP features, out-of-scope items, phase timeline 2. `DECISIONS.md` — original stack and architecture decisions; also read the `## Known Debt` section if present 3. `SPRINT.md` — current sprint status (if active); archived sprint lines for sprint sizing data 4. Use TaskList to get current task states 5. Recent git log: `git log --oneline -20` — what has been merged recently 6. File count and largest files: ```bash # Cross-platform file count (excluding .git) find . -type f -not -path './.git/*' | wc -l # Largest source files find . -name "*.ts" -o -name "*.js" -o -name "*.py" -o -name "*.go" -o -name "*.rs" | xargs wc -l 2>/dev/null | sort -rn | head -5 ``` (adjust extensions for the project stack; on Windows use `Get-ChildItem -Recurse -File | Measure-Object`) 7. Dependencies: read `package.json`, `pyproject.toml`, `go.mod`, `Cargo.toml`, or equivalent --- ## Step 2: Assess Each Dimension ### A. Phase Progress - Which phase is declared in the roadmap? - What MVP features are comple