一键导入
retrospective
Structured protocol for team retrospectives that produce concrete process improvements
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Structured protocol for team retrospectives that produce concrete process improvements
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Unreal Engine 5 C++ coding conventions, naming standards, and architectural patterns
Pipeline for generating, validating, and importing 3D models, textures, and audio assets
Game design reference for 3D Frogger arcade gameplay, mechanics, and progression
Unreal Engine 5 build system, testing framework, and CI/CD patterns
| name | retrospective |
| description | Structured protocol for team retrospectives that produce concrete process improvements |
| context | fork |
Run this protocol after each feature completion, or when the team encounters significant friction.
Review the evidence since the last retrospective:
# Commits since last retro (look for the [retro] tag)
git log --oneline --since="$(git log --all --grep='[retro]' -1 --format='%ci' 2>/dev/null || echo '1 week ago')"
# Failed builds or reverted commits
git log --oneline --all --grep='revert\|fix\|broken\|oops'
# Files with the most churn (potential design issues)
git log --pretty=format: --name-only | sort | uniq -c | sort -rn | head -20
Categorize observations into:
Process Issues (how we work)
Technical Issues (what we build)
Quality Issues (what we ship)
For each issue, write a specific, actionable change:
Bad: "We should communicate better" Good: "Before any agent starts implementing, post a 3-sentence plan in the team channel and wait for acknowledgment from at least one other agent"
Bad: "Tests should be better" Good: "Every gameplay test must verify: input registered, state changed, visual feedback triggered, audio feedback triggered"
.team/agreements.md with new or modified rules.claude/agents/ if role boundaries need adjustment.claude/skills/ if technical patterns need refinement.claude/settings.json if automated enforcement is neededAppend to .team/retrospective-log.md:
## Retrospective [DATE] - After [FEATURE/MILESTONE]
### What Went Well
- [Specific positive observation]
### What Caused Friction
- [Issue]: [Root cause]
### Changes Made
- [File modified]: [What changed and why]
### Action Items
- [ ] [Specific follow-up task]
git add .team/ .claude/
git commit -m "refactor: update team agreements from retrospective [retro]"