From vibeflow
Runs a post-release retrospective: collects session logs, test results, and scope data; analyzes delivery, quality, and process; extracts lessons; generates a retro document and optional increment request for the next iteration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vibeflow:vibeflow-reflectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
在发布完成后关闭循环。总结本次交付的经验,识别改进机会,为下一迭代提供输入。
在发布完成后关闭循环。总结本次交付的经验,识别改进机会,为下一迭代提供输入。
启动宣告: "正在使用 vibeflow-reflect 进行发布后回顾。"
.vibeflow/workflow.yaml 中 reflect.required 为 true(某些模板如 prototype 可能标记为 false)如 reflect 不是必需的:宣布"回顾为可选 — 跳过",将阶段标记为完成。
读取以下工件以收集回顾数据:
.vibeflow/logs/session-log.md — 逐会话进度和遇到的问题feature-list.json — 功能总数、废弃功能、优先级分布RELEASE_NOTES.md — 实际交付内容docs/changes/<change-id>/verification/system-test.md — 测试结果和缺陷摘要docs/changes/<change-id>/verification/qa.md(如存在)— QA 发现docs/changes/<change-id>/verification/review.md — 全局审查发现docs/changes/<change-id>/proposal.md — Plan 阶段完成标记(含 scope decision)docs/changes/<change-id>/design-review.md — 工程审查和设计审查发现docs/changes/<change-id>/brief.md — 初始问题定义git log — 提交历史和时间线从分析中提取:
基于回顾识别下一步:
从 ST 报告的建议、QA 报告的推迟项、审查报告的次要问题中收集。
从 brief.md 的"10x 版本"和 design-review.md 的扩展建议中回顾。
从代码审查和测试过程中识别的技术债。
保存到 .vibeflow/logs/retro-YYYY-MM-DD.md:
# 回顾 — [项目名] vX.Y.Z
**日期**:YYYY-MM-DD
## 交付摘要
- 计划功能:X
- 实际交付:Y(Z 个废弃)
- 范围变化:[描述]
## 质量摘要
- 测试覆盖率:XX% 行 / XX% 分支 / XX% 变异
- ST 缺陷:A 严重 / B 重要 / C 次要
- QA 发现:D(如适用)
- 返工功能数:E
## 什么做得好
- [项 1]
- [项 2]
## 什么可以改进
- [项 1]
- [项 2]
## 关键教训
- [教训 1]
- [教训 2]
## 下一迭代建议
### 改进项
- [来自 ST/QA/Review 的推迟项]
### 新机会
- [来自 Think 和 Plan Review]
### 技术债
- [识别的技术债]
如果回顾中识别了明确的下一迭代工作:
通过 AskUserQuestion 询问用户是否要启动下一迭代。如是:
生成 .vibeflow/increments/requests/<increment-id>.json,并将其加入 .vibeflow/increments/queue.json:
{
"reason": "回顾中识别的改进和新功能",
"scope": "来自回顾的简要范围描述",
"items": [
{"type": "new", "description": "新功能描述"},
{"type": "improvement", "description": "改进描述"},
{"type": "tech_debt", "description": "技术债描述"}
],
"source": "retro-YYYY-MM-DD"
}
这将触发 router 在下次会话中进入增量流程。
.vibeflow/logs/session-log.md — 记录回顾会话调用者: vibeflow-router 或 vibeflow-ship
依赖: 发布完成
产出: .vibeflow/logs/retro-YYYY-MM-DD.md,可选 .vibeflow/increments/requests/<increment-id>.json
链接到: done(项目完成)或通过 .vibeflow/increments/queue.json 触发增量流程
npx claudepluginhub ttttstc/vibeflow --plugin vibeflowRuns structured retrospective after completing delivery diamonds or milestones, recording cycle data, ICE/effort calibration, DORA metrics, and learnings in canvas YAML and decision log.
Facilitates structured sprint or project retrospectives by gathering data from status reports and velocity metrics, identifying what went well and what needs improvement, and generating actionable items with owners and due dates.
Activate for: retrospective, retro, post-mortem, post launch review, feature review, what went well, what didn't go well, lessons learned, sprint retrospective, product review, launch review, did it work, measure impact, feature retrospective, post-ship review, outcome review, product retro, evaluate feature success. NOT for: metrics dashboards (use official /metrics-review), stakeholder updates (use official /stakeholder-update), sprint planning (use official /sprint-planning).