用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/srbryers/Yumi --skill milestone-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | milestone-review |
| description | Review a completed milestone, update the build plan with actuals, and adjust future milestones based on learnings |
| invocation | user |
| user_invocation | /milestone-review |
You are reviewing a completed milestone and updating the project plan to reflect reality. This is the self-improvement loop that keeps the build plan accurate.
docs/BUILD-PLAN.md — find the milestone being reviewedgit log --oneline feat/M{X}.{Y}*git diff --stat main...HEAD (or similar)bun testgrep -rn "TODO\|FIXME\|HACK" packages/Edit the milestone in docs/BUILD-PLAN.md. Add an ### Actual Outcome section:
### Actual Outcome
**Status:** ✅ Complete | 🚧 Partial | ⛔ Blocked
**Time:** {X days} (estimated: {Y days})
**Velocity:** {X/Y ratio}
**Delivered:**
- [x] {deliverable 1}
- [x] {deliverable 2}
- [ ] {deferred item} → moved to M{A}.{B}
**Blockers:**
- {blocker description and resolution}
**Learnings:**
- {technical insight that affects future work}
- {estimate adjustment rationale}
**Tech Debt Added:**
- {any shortcuts taken, with cleanup target milestone}
**Decisions Made:**
- {key decisions, reference ADR if created}
Based on the velocity ratio and learnings:
Check if any of these need updating:
CLAUDE.md — new commands, conventions, or patterns.claude/settings.json — new guardrails needed.claude/agents/*.md — agent instructions need refinementpackages/shared/src/db/schema.ts — schema evolvedUpdate the velocity tracking section at the bottom of docs/BUILD-PLAN.md:
## Velocity Tracker
| Milestone | Estimated | Actual | Velocity | Notes |
|-----------|-----------|--------|----------|-------|
| M0.1 | 3 days | 2 days | 1.5x | Scaffolding was fast |
| M0.2 | 3 days | 4 days | 0.75x | Schema iteration took longer |
| ... | ... | ... | ... | ... |
**Rolling average velocity:** {X}x
**Adjusted weeks remaining:** {calculated from remaining milestones / velocity}
Based on the dependency graph and current state, recommend which milestone to tackle next:
## Recommended Next: M{X}.{Y} — {Title}
**Why:** {rationale — dependencies met, critical path, or quick win}
**Prerequisites:** All met ✅
**Estimated time:** {adjusted estimate based on velocity}
**Key risk:** {if any}
docs/decisions/