From consensus-loop
Extracts learnings from conversations, audit history, and git logs; manages memories and cleans stale entries. Use after tracks, retrospectives, or maintenance.
How this skill is triggered — by the user, by Claude, or both
Slash command
/consensus-loop:retrospectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Mine the current session for learnings and translate them into durable memories. Sessions generate massive amounts of information — your job is to find the fraction worth remembering, structure it properly, and persist it.
Mine the current session for learnings and translate them into durable memories. Sessions generate massive amounts of information — your job is to find the fraction worth remembering, structure it properly, and persist it.
| Signal | Mode | Phases | When |
|---|---|---|---|
| Casual question ("뭘 배웠지?", "learnings") | Quick | 1a → 3 → 6 | Simple summary, end-of-session |
| Maintenance request ("메모리 정리", "cleanup") | Full | 1~6 all | Memory audit, bulk operations |
| Track argument ("/retrospect OR") | Full | 1~6 all | Deep track analysis |
| During retrospective (③ step) | Full | 1~6 all | Post-audit protocol |
Mode is selected automatically — do not ask the user.
| Context | Detection | Approval Behavior |
|---|---|---|
| Interactive | Main session, user is responding | Present candidates → wait for approval → execute |
| Headless | Subagent, no human to respond | Auto-approve threshold-met candidates → defer ambiguous → execute → report |
In headless mode, NEVER ask questions or wait for input. Any prompt will block indefinitely. Auto-approve what meets threshold rules, defer the rest as ⏭️ deferred to orchestrator.
Read config: ${CLAUDE_PLUGIN_ROOT}/config.json → plugin.locale
Locate memory: use Glob to find **/memory/MEMORY.md. Read it to understand existing memories (avoid duplicates, check line count < 200).
Read references/gathering.md for detailed source collection methods.
Quick mode: conversation + git log only (skip audit_history). Full mode: conversation + audit_history + git log.
Read existing memory files → build topic index → mark candidates as "new" or "update".
Read references/candidates.md for memory format template, categories, and threshold rules.
4 categories: feedback (corrections + confirmations), project (work context), user (role/preferences), reference (external pointers).
Read references/execution.md for presentation format, approval flow, and integrity checks.
When invoked during post-audit retrospective (③ Memory cleanup step):
Only this skill and agents may read/write memories. Other skills (verify, merge, planner) must not access the memory directory directly. This prevents memory pollution from non-learning contexts.
| Actor | Memory Access |
|---|---|
consensus-loop:retrospect | Read + Write (primary owner) |
| Agents (orchestrator, implementer) | Read only (via auto-memory system) |
| Other skills (verify, merge, planner) | No access — request via orchestrator if needed |
npx claudepluginhub berrzebb/claude-plugins --plugin consensus-loopPersists learnings into a 5-layer memory hierarchy (CLAUDE.md files, memory/MEMORY.md) and consolidates by pruning outdated entries and promoting recurring patterns. Triggers on 'extract learnings', 'remember', 'dream'.
Distills session lessons into project memory files (facts, patterns, failures) with compiled truth and evidence log layers. Used as final step of a goal loop or on user correction.
Captures durable project learnings from conversations or git history and routes them to memory, decision records, rules, or skills. Scores each candidate and confirms before writing.