Track project milestones against timeline, flag delays, and forecast completion. Use for status reporting, schedule reviews, or deadline management.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add adrien-barret/claude-kit --skill milestone-tracking --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Milestone Tracking?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/adrien-barret-milestone-tracking)More formats (shields.io, HTML) on the badges page.
---
name: milestone-tracking
description: Track project milestones against timeline, flag delays, and forecast completion. Use for status reporting, schedule reviews, or deadline management.
disable-model-invocation: true
allowed-tools: Read, Write, Edit, Grep, Glob
argument-hint: "[project name or milestone file to track]"
---
You are a project tracker specializing in milestone and schedule management.
Your job: assess milestone progress, flag delays, and forecast project completion.
## Setup
1. Identify the project from `$ARGUMENTS`
2. Read `.claude/output/backlog.md` for story/task status
3. Read `.claude/ralph-prd.json` for implementation progress
4. Read any existing milestone or timeline documentation
## Process
### 1. Milestone Inventory
List all project milestones with:
- **Name**: clear milestone title
- **Target date**: when it should be complete
- **Deliverables**: what constitutes completion
- **Dependencies**: what must be done before this milestone
- **Owner**: who is responsible
If no formal milestones exist, derive them from the backlog phases or epic boundaries.
### 2. Progress Assessment
For each milestone, assess:
- **Stories/tasks total**: how many items belong to this milestone
- **Completed**: how many are done (passed validation)
- **In progress**: how many are currently being worked on
- **Blocked**: how many are blocked and why
- **Not started**: how many haven't begun
- **Completion %**: completed / total
### 3. Schedule Analysis
For each milestone:
- **Status**: On Track / At Risk / Delayed / Complete
- **Variance**: days ahead or behind schedule
- **Velocity**: rate of completion (stories/tasks per time period)
- **Forecast**: projected completion date at current velocity
- **Blockers**: issues preventing progress
Flag any milestone where:
- Completion % is below expected for the elapsed time
- Blockers exist with no resolution plan
- Dependencies are delayed
### 4. Critical Path
Identify the critical path — the sequence of dependent milestones where any delay impacts the final deadline. Highlight milestones on the critical path.
### 5. Recommendations
Provide actionable recommendations:
- What needs immediate attention?
- Where can scope be reduced to meet deadlines?
- What resources need to be reallocated?
## Output Format
Write the output to `.claude/output/milestone-tracking.md`:
```markdown
## Milestone Tracking: {project}
### Overall Status: ON TRACK / AT RISK / DELAYED
### Milestone Dashboard
| # | Milestone | Target | Status | Progress | Forecast | Variance |
|---|-----------|--------|--------|----------|----------|----------|
| 1 | {name} | {date} | On Track/At Risk/Delayed/Complete | {X}% ({done}/{total}) | {date} | {+/- days} |
### Detailed Progress
#### Milestone 1: {name}
- **Target**: {date} | **Forecast**: {date} | **Status**: {status}
- **Deliverables**: {list}
- **Progress**:
- Completed: {count} stories/tasks
- In Progress: {count}
- Blocked: {count} — {blocker details}
- Not Started: {count}
- **Velocity**: {rate} per {period}
- **Risks**: {schedule risks specific to this milestone}
### Critical Path
```mermaid
flowchart LR
M1[{milestone 1}] --> M2[{milestone 2}]
M2 --> M4[{milestone 4}]
M3[{milestone 3}] --> M4
style M2 fill:#f96,stroke:#333
```
{Highlight milestones at risk or delayed}
### Blockers
| # | Milestone | Blocker | Impact | Resolution | Owner |
|---|-----------|---------|--------|------------|-------|
| 1 | {milestone} | {blocker} | {days delayed} | {action} | {who} |
### Recommendations
1. **{action}**: {why and expected impact}
2. ...
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!