一键导入
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.