Quick Start
Build your own (recommended)
Templates are examples, not best practice. For a chain that fits your project, ask chain-builder:
"Build me a chain for this project"The agent reads your codebase, asks a few questions, and writes a chain. Use templates only as a quick starting point.
1. Pick a Template
After installing the plugin, set up a workflow template:
"Set up a development workflow" → Full dev pipeline with 22 agents
"I need a CI/CD pipeline" → DevOps chain with auto-rollbackOr use the MCP tool directly:
mcp__brainbrew__template_bump(template: "develop")2. Restart Claude Code
After bumping a template, restart your Claude Code session for the new hooks, agents, and chain config to take effect.
3. Start Working
/code implement feature X → Pipeline runs: plan → code → review → test → commitThat's it. The chain handles routing, error recovery, and coordination.
opencode users
brainbrew-devkit also runs under opencode via the oh-my-opencode (OHO) plugin.
Prerequisite
Install the plugin in Claude Code first. opencode has no plugin marketplace — OHO discovers brainbrew-devkit from ~/.claude/plugins/ after Claude Code installs it.
After installing in Claude Code:
- Add OHO to
~/.config/opencode/opencode.json:json{ "plugin": ["oh-my-openagent@latest"] } - Run
/brainbrew-devkit:initto write hook entries to~/.claude/settings.json(OHO only dispatches hooks declared there, not from plugin manifests). - Restart opencode.
Claude Code reads hooks directly from the plugin manifest — step 2 is only required for opencode. See Installation for the full guide.
Natural Language Commands
"Create an agent for API testing" → create_agent(...)
"Build me a deployment skill" → create_skill(...)
"Tell implementer to fix the bug" → memory_add(target: agent:implementer)
"What agents do I have?" → list_agents()Available Templates
| Template | Agents | Chain |
|---|---|---|
| develop | 12 | planner → plan-reviewer → implementer → parallel-review (team) → tester → git-manager |
| devops | 10 | code-scanner → security-auditor → test-runner → deployer → monitor |
| marketing | 6 | researcher → content-writer → editor → seo-optimizer → publisher → analyzer |
| research | 5 | topic-researcher → source-gatherer → analyzer → synthesizer → report-writer |
| docs | 5 | code-scanner → doc-generator → doc-reviewer → formatter → publisher |
| support | 5 | ticket-classifier → router → knowledge-searcher → response-drafter → reviewer |
| data | 5 | data-collector → cleaner → analyzer → visualizer → reporter |
| moderation | 5 | content-scanner → classifier → flagger → reviewer → actioner |
| review | 1 | code-reviewer → END |
| skill-dev | 4 | skill-finder → skill-creator → skill-reviewer (PASS=END, FIX→skill-improver) |
Next Steps
- Chain Workflow — Understand how chains work
- Memory Bus — Inter-agent communication
- Custom Agents — Create your own agents