一键导入
retro
Extract learnings from completed work. Trigger phrases: "run a retrospective", "extract learnings", "what did we learn", "capture lessons", "create a retro".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Extract learnings from completed work. Trigger phrases: "run a retrospective", "extract learnings", "what did we learn", "capture lessons", "create a retro".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
This skill should be used when the user asks to "track issues", "create beads issue", "show blockers", "what's ready to work on", "beads routing", "prefix routing", "cross-rig beads", "BEADS_DIR", "two-level beads", "town vs rig beads", "slingable beads", or needs guidance on git-based issue tracking with the bd CLI.
Investigate suspected bugs with git archaeology and root cause analysis. Triggers: "bug", "broken", "doesn't work", "failing", "investigate bug".
Analyze code complexity and find refactor targets using radon/gocyclo. Triggers: "complexity", "analyze complexity", "find complex code", "refactor targets", "cyclomatic complexity", "code metrics".
Fully autonomous epic execution. Runs until ALL children are CLOSED. Level 1 uses /swarm (Task tool). Level 2 uses /spawn + Agent Mail for cross-session orchestration with Chiron help routing. NO human prompts, NO stopping.
This skill should be used when the user asks to "generate documentation", "validate docs", "check doc coverage", "find missing docs", "create code-map", "sync documentation", "update docs", or needs guidance on documentation generation and validation for any repository type. Triggers: doc, documentation, code-map, doc coverage, validate docs.
Extract decisions and learnings from Claude session transcripts. Triggers: "extract learnings", "process pending", SessionStart hook.
| name | retro |
| description | Extract learnings from completed work. Trigger phrases: "run a retrospective", "extract learnings", "what did we learn", "capture lessons", "create a retro". |
YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it.
Extract learnings from completed work and feed the knowledge flywheel.
Given /retro [topic] [--vibe-results <path>]:
If vibe results path provided: Read and incorporate validation findings:
Tool: Read
Parameters:
file_path: <vibe-results-path>
This allows post-mortem to pass validation context without re-running vibe.
If topic provided: Focus on that specific work.
If no topic: Look at recent activity:
# Recent commits
git log --oneline -10 --since="7 days ago"
# Recent issues closed
bd list --status closed --since "7 days ago" 2>/dev/null | head -5
# Recent research/plans
ls -lt .agents/research/ .agents/plans/ 2>/dev/null | head -5
Read relevant artifacts:
Use the Read tool and git commands to understand what was done.
If vibe results were provided, incorporate them:
Ask these questions:
What went well?
What went wrong?
What did we discover?
For each learning, capture:
Write to: .agents/learnings/YYYY-MM-DD-<topic>.md
# Learning: <Short Title>
**ID**: L1
**Category**: <category>
**Confidence**: <high|medium|low>
## What We Learned
<1-2 sentences describing the insight>
## Why It Matters
<1 sentence on impact/value>
## Source
<What work this came from>
---
# Learning: <Next Title>
**ID**: L2
...
Write to: .agents/retros/YYYY-MM-DD-<topic>.md
# Retrospective: <Topic>
**Date:** YYYY-MM-DD
**Scope:** <what work was reviewed>
## Summary
<1-2 sentence overview>
## What Went Well
- <thing 1>
- <thing 2>
## What Could Be Improved
- <improvement 1>
- <improvement 2>
## Learnings Extracted
- L1: <brief>
- L2: <brief>
See: `.agents/learnings/YYYY-MM-DD-<topic>.md`
## Action Items
- [ ] <any follow-up needed>
ao forge index .agents/learnings/YYYY-MM-DD-*.md 2>/dev/null
Tell the user:
Learnings feed future research:
Work → /retro → .agents/learnings/ → ao forge index → /research finds it
Future sessions start smarter because of your retrospective.