brain-approve
Approve, reject, or manage pending brain memories. Use: /brain-approve [all|<id>]
Time-travel through any past Agent Team session — see who did what, what decisions were made, and what files were touched, in chronological order.
$ npx -y skills add Gr122lyBr/claude-teams-brain --skill brain-replay --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/brain-replayContext preview
The summary Claude sees to decide when to auto-load this skill.
Time-travel through any past Agent Team session — see who did what, what decisions were made, and what files were touched, in chronological order.
Time-travel through any past Agent Team session — see who did what, what decisions were made, and what files were touched, in chronological order.
This skill activates when the user runs `/brain-replay`, `/brain-replay <run-id>`, or `/claude-teams-brain:brain-replay`.
If the user provided a run-id argument, or no argument at all, go straight to replay:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py" replay-run "<run_id_or_latest>" "${CLAUDE_PROJECT_DIR}"**Only if** the user explicitly asks to pick a session, list available sessions:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py" list-runs "${CLAUDE_PROJECT_DIR}"Present sessions to the user:
Recent sessions: 3de2ae4f 2026-03-10 14:22 3 tasks 2 agents (backend, frontend) 8b55bbf1 2026-03-09 11:05 5 tasks 3 agents (backend, database, tests)
Then ask which session to replay and run the `replay-run` command with their choice.
Parse the JSON response:
Output the `narrative` field directly as formatted Markdown. It contains:
After showing the replay, offer: > "**What would you like to do next?** > - `/brain-export` — export all accumulated knowledge as CONVENTIONS.md > - `/brain-search <query>` — search for something specific from this session > - `/brain-query <role>` — preview what a new teammate would receive"
**Important**: Only use the exact commands shown above (`replay-run` and `list-runs`). Do not invent or guess other command names.
Give your Claude Code Agent Teams a memory. Auto-injects role-specific context into every new teammate — your team never starts blind again.
Repo: Gr122lyBr/claude-teams-brain
Approve, reject, or manage pending brain memories. Use: /brain-approve [all|<id>]
Launch the brain dashboard web UI to visualize and curate memories, decisions, and files. Trigger: /brain-dashboard
Export accumulated brain knowledge as a CONVENTIONS.md file in your project. Distills all rules, decisions, files, and agent roles into a committable file.
Remove a manually stored memory from the brain by partial text match. Use: /brain-forget <text>
Export accumulated brain knowledge as `CONVENTIONS.md` and open a GitHub PR so your whole team can review what the AI team learned.