From aiagentminder
Project health assessment across four dimensions
How this skill is triggered — by the user, by Claude, or both
Slash command
/aiagentminder:milestoneThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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 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.
Read the following:
docs/strategy-roadmap.md — current phase, MVP features, out-of-scope items, phase timelineDECISIONS.md — original stack and architecture decisions; also read the ## Known Debt section if presentSPRINT.md — current sprint status (if active); archived sprint lines for sprint sizing datagit log --oneline -20 — what has been merged recently# 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)package.json, pyproject.toml, go.mod, Cargo.toml, or equivalentAssess whether codebase complexity is proportional to the current phase:
Phase thresholds:
From the data gathered in Step 1:
Flag any file exceeding the phase threshold.
Read the ## Known Debt section in DECISIONS.md (if present):
Milestone Health Check — S{sprint_number} / Phase {n}
Date: {today}
Phase Progress: {X}/{total} MVP features complete ({%})
Timeline: [On track / At risk / Behind — one sentence why]
Scope Drift: [None detected / {description of drift}]
Dependency count: {n} direct ({+/-delta from last sprint if known})
New this sprint: {list any added, or "none"}
Complexity Budget: [Healthy / Watch / Concern]
File count: {n} ({threshold for this phase})
Largest files: {file}: {lines} lines, {file}: {lines} lines, {file}: {lines} lines
Known Debt: {n} items [{oldest date} — {highest-impact description}]
Recommendations:
- [Actionable item if any concern raised]
- [Or: "No actions needed — project health looks good."]
If any of the following are true, surface them explicitly before proceeding:
npx claudepluginhub lwalden/aiagentminder --plugin aiagentminderGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.