원클릭으로
retro
Periodic cross-agent learning consolidation — review what worked, what didn't, propagate insights
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Periodic cross-agent learning consolidation — review what worked, what didn't, propagate insights
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review pull requests for code quality, security, and correctness
Review pull requests for code quality, security, and correctness
End-to-end shipping workflow — tests, PR creation, review request. Unified pr-create + pr-complete.
Break down complex problems through structured analytical frameworks
Persist and recall context across sessions — critical for continuity
Session lifecycle — checkpoint, restore, handoff, sleep/wake
| name | retro |
| version | 1.0.0 |
| standalone | true |
| description | Periodic cross-agent learning consolidation — review what worked, what didn't, propagate insights |
| uses | ["core/memory"] |
| requires | {"tools":["curl"],"env":[]} |
| security | {"risk_level":"read","capabilities":["memory:read","memory:write"],"requires_approval":false} |
Periodic retrospective that reviews agent learnings, consolidates patterns, and propagates high-value insights across agents. Run weekly or after significant milestones.
Standalone mode: Works without agent-coordinator. Scans .os/agents/*/memory/
directly instead of using the coordinator API.
Scan each agent's L1 memory for recent learnings:
# Framework mode
curl -s "${AC_COORDINATOR_URL:-http://localhost:9889}/memory/recent?days=7"
# Standalone mode
find .os/agents/*/memory/ -name "*.md" -newer .os/retro-last-run 2>/dev/null
Group learnings into:
For each pattern with applications >= 2 and successes >= 1:
# Framework mode — trigger propagation
curl -s -X POST "${AC_COORDINATOR_URL:-http://localhost:9889}/memory/${AGENT_ID}/consolidate"
For standalone mode, manually copy high-value learnings from
.os/agents/{name}/memory/ to .os/memory/shared/.
If a learning reveals a common mistake or pattern:
references/ directoryreview/pr-review/references/common-misses.mdIf the retro reveals systematic problems:
Write a summary to .os/retro/YYYY-MM-DD.md:
# Retro — {date}
## What Worked
- {pattern}: {evidence}
## What Didn't
- {anti-pattern}: {evidence}
## Actions
- [ ] {action item}
## Learnings Propagated
- {learning} → L2 shared memory
Touch .os/retro-last-run to mark the timestamp.