원클릭으로
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]"