/brain-approve
Approve, reject, or manage pending brain memories
$ npx -y skills add Gr122lyBr/claude-teams-brain --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/brain-approve
Context preview
What this command does when you run it.
Approve, reject, or manage pending brain memories
Command definition
brain-approve.mdname: brain-approve description: Approve, reject, or manage pending brain memories
Manage pending brain memories. Memories from `/brain-remember` start as PENDING and need approval before being injected into teammates.
Usage: `/brain-approve [all|<id>]`
Examples:
- `/brain-approve` — list all pending memories
- `/brain-approve all` — approve all pending memories
- `/brain-approve 42` — approve a specific memory by ID
If the user provides "all" as argument:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py approve-all-pending "$CLAUDE_PROJECT_DIR"If the user provides a specific task/decision ID:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py approve-task "$ARGS" "$CLAUDE_PROJECT_DIR"If no argument provided, list pending items first:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py list-pending "$CLAUDE_PROJECT_DIR"Then ask the user which items to approve or if they want to approve all.
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
Other commands on claude-teams-brain.
- /brain-clear
Clear all claude-teams-brain memory for this project
Open command - /brain-dashboard
Launch the brain dashboard web UI to visualize and curate memories, decisions, and files
Open command - /brain-export
Export accumulated brain knowledge as a CONVENTIONS.md file in your project
Open command - /brain-forget
Remove a manually stored memory from the brain
Open command - /brain-github-export
Export all accumulated brain knowledge as `CONVENTIONS.md` and open a GitHub Pull Request so your whole team can review what the AI team learned. Requires `gh` CLI to be installed and authenticated.
Open command - /brain-query
Query the claude-teams-brain for context about a specific role or topic
Open command

