用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Hbin77/claude-code-kit --skill retro命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | retro |
| description | Run a sprint/session retrospective to capture what worked, what didn't, and what to improve. |
Run a sprint/session retrospective to capture what worked, what didn't, and what to improve.
Gather Data: Review what happened in this session/sprint
git log --oneline -20git diff --stat HEAD~N — clamp N to the available history first so this doesn't fail on repos with fewer than N commits: N=$(( $(git rev-list --count HEAD) - 1 )); [ $N -gt 5 ] && N=5; if N is 0 (single commit), fall back to git log --oneline / git show --stat.Classify Events: Sort into categories
Extract Action Items: Concrete, actionable improvements
Identify Patterns: Look for recurring themes across retros
## Retrospective: [date or sprint name]
### Summary
- Duration: [time spent]
- Commits: [count]
- Files changed: [count]
- Lines: +[added] / -[removed]
### 🟢 Keep (What Went Well)
- [item 1]
- [item 2]
### 🔴 Stop (What Didn't Go Well)
- [item 1] → Root cause: [why]
- [item 2] → Root cause: [why]
### 🔵 Start (Try Next Time)
- [item 1] — Expected benefit: [what it improves]
- [item 2] — Expected benefit: [what it improves]
### Action Items
- [ ] [concrete action 1]
- [ ] [concrete action 2]
### Metrics
| Metric | This Sprint | Trend |
|--------|-------------|-------|
| Bugs found in review | N | ↑↓→ |
| Build failures | N | ↑↓→ |
| Test coverage | N% | ↑↓→ |