ワンクリックで
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.