brain-approve
Approve, reject, or manage pending brain memories. Use: /brain-approve [all|<id>]
Search the brain knowledge base directly for any query. Use: /brain-search <query>
$ npx -y skills add Gr122lyBr/claude-teams-brain --skill brain-search --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/brain-searchContext preview
The summary Claude sees to decide when to auto-load this skill.
Search the brain knowledge base directly for any query. Use: /brain-search <query>
name: brain-search description: | Search the brain knowledge base directly for any query. Use: /brain-search <query> user_invocable: true
Search everything the brain has indexed for a query. Good for broad keyword lookups across all indexed content.
The user provides a search query as an argument.
Run:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py kb-search "$CLAUDE_PROJECT_DIR" "$ARGS" 5Display results with titles, sources, and relevant snippets.
| Source | Content | When indexed | |--------|---------|-------------| | Session KB | `batch_execute` and `execute` MCP tool output | Each session | | CLAUDE.md | Project instructions | Session start | | Git log | Last 20 commits | Session start | | Config files | package.json, requirements.txt, etc. | Session start | | Convention files | CONVENTIONS.md, AGENTS.md, .cursorrules | Session start | | Auto-stack | Seeded conventions (nextjs, fastapi, etc.) | First session |
**Tip:** For role-specific task history and decisions, use `/brain-query <role>` instead — it applies relevance ranking and recency boost specific to that role.
Suggest: 1. `/brain-remember <fact>` to manually add important information 2. `/brain-query <role>` to look up role-specific task history 3. Starting an Agent Team session to build up memory automatically
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.