brain-approve
Approve, reject, or manage pending brain memories. Use: /brain-approve [all|<id>]
Instantly seed the brain with pre-built stack conventions so your AI team starts informed from session one — no cold start.
$ npx -y skills add Gr122lyBr/claude-teams-brain --skill brain-seed --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/brain-seedContext preview
The summary Claude sees to decide when to auto-load this skill.
Instantly seed the brain with pre-built stack conventions so your AI team starts informed from session one — no cold start.
Instantly seed the brain with pre-built stack conventions so your AI team starts informed from session one — no cold start.
This skill activates when the user runs `/brain-seed`, `/brain-seed <profile>`, or `/claude-teams-brain:brain-seed`.
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py" list-profilesParse the JSON array and present the options to the user as a clean table:
Available profiles: nextjs-prisma Next.js + Prisma (App Router) 15 conventions fastapi FastAPI + SQLAlchemy (Async) 14 conventions go-microservices Go Microservices 14 conventions react-native React Native (Expo) 14 conventions python-general Python (Modern Best Practices) 15 conventions
Ask the user which profile they want to seed, then proceed to Step 2.
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/brain_engine.py" seed-profile "<profile_name>" "${CLAUDE_PROJECT_DIR}"Parse the JSON response:
On success, respond with: > "✅ Seeded **{conventions_added}** conventions from the **{profile}** profile. These will be injected into all future teammates automatically. > > **Next steps:** > - Run `/brain-remember <text>` to add project-specific overrides on top of the profile > - Spawn your first team — teammates will receive these conventions immediately > - Run `/brain-query <role>` to preview exactly what a teammate will see"
On not_found, list the available profiles and ask the user to choose one.
If the user provides a file path (e.g., `/brain-seed ./my-conventions.json`), pass it directly to seed-profile. The engine accepts file paths in addition to built-in profile names.
Custom profile JSON format:
{
"name": "My Team Conventions",
"description": "Our specific stack",
"stack": ["tag1", "tag2"],
"conventions": [
"Always use TypeScript strict mode",
"Use Zod for validation"
]
}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.