원클릭으로
retro
Post-task retrospective — capture lessons learned and store them for future sessions. Builds cumulative intelligence across sessions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Post-task retrospective — capture lessons learned and store them for future sessions. Builds cumulative intelligence across sessions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Commit all changes, push to remote, and open a pull request in one shot. The most common inner-loop workflow.
Clean start for a new task. Saves important decisions, clears context, and re-reads project config.
Resume work from a previous session. Reads MEMORY.md and continues autonomously.
Adversarial code review — stress-tests recent changes by hunting for bugs, edge cases, security holes, and design flaws. Spawns parallel attack agents, consolidates into a severity-rated report.
Debug and investigate issues — trace symptoms to root cause. Use when something is broken, a test fails mysteriously, or behavior is unexpected.
Prove that the current implementation works. Runs tests, diffs behavior, validates correctness. Use after implementing a feature or fix to verify before marking complete.
| name | retro |
| description | Post-task retrospective — capture lessons learned and store them for future sessions. Builds cumulative intelligence across sessions. |
| argument-hint | [task description or 'this session'] |
| user_invocable | true |
| tools | Read, Glob, Grep, Bash |
| model | inherit |
After completing a task, capture what went well, what went wrong, and what to do differently. Store findings in context-store for cumulative intelligence.
$ARGUMENTS
Look at the work just completed:
git log --oneline -20
git diff --stat main..HEAD
Read MEMORY.md for task context and decisions made.
For each of these categories, note anything worth remembering:
What went well (reinforce):
What went wrong (prevent):
What was learned (remember):
For each lesson worth preserving, call mcp__context-store__store_context with:
project: the project namecategory: lessontitle: short, searchable titlecontent: the lesson with contexttags: relevant tags for future searchFor architectural decisions, also call mcp__context-store__record_decision.
## Retro: [Task]
### Lessons Stored
1. [lesson title] — [one-line summary]
2. [lesson title] — [one-line summary]
### Decisions Recorded
1. [decision] — [rationale in brief]
### Patterns to Watch
- [anything that might recur]