Official Claude Code plugin for Rightbrain AI — the platform for embedding AI into existing tech stacks via a single API call.
Rightbrain lets you build production AI features without infrastructure. The platform provides four primitives that work together:
| Primitive | What it is | Example |
|---|---|---|
| Task | A stateless AI function with typed input/output | Classify sentiment, extract invoices, generate images |
| TaskAgent | An orchestrator that reasons about which tasks to call | Support triage, content pipeline, deal intelligence |
| Skill | A declarative instruction bundle for agents | Brand voice guide, escalation procedures, design guidelines |
| Integration | A platform-managed OAuth connection | Google Sheets, Docs, Slides, Calendar, Gmail |
Tasks are composed into TaskAgents, which combine them with Skills (domain expertise), Integrations (Google Workspace), and MCP Servers (external APIs) to build complex AI workflows.
| Plugin | Description |
|---|---|
| rightbrain-manager | Complete manager for the Rightbrain API. Create and manage Tasks, TaskAgents, Skills, Integrations, and MCP Servers. |
Run these commands inside Claude Code:
/plugin marketplace add https://github.com/RightbrainAI/claude-code-skills
/plugin install rightbrain-manager@rightbrain-skills
That's it! The skill will handle authentication automatically when you first use it.
git clone https://github.com/RightbrainAI/claude-code-skills.git
cp -r claude-code-skills/plugins/rightbrain-manager/skills/rightbrain-manager ~/.claude/skills/
npx rightbrain@latest loginRestart Claude Code and the skill will be available.
A comprehensive skill for managing the full Rightbrain platform from Claude Code.
- Tasks — Create, browse, run, update, export, and import AI tasks with guided workflows
- TaskAgents — Build agents that orchestrate multiple tasks, skills, integrations, and MCP servers
- Skills — Browse the catalog, create custom project skills, manage revisions
- Integrations — Connect Google Workspace (Sheets, Docs, Slides, Calendar, Gmail) via OAuth
- MCP Servers — Connect external tool providers (Notion, GitHub, custom APIs)
- Environment switching — Work against production or staging with a single command
Say any of these to activate the skill:
| Category | Triggers |
|---|---|
| Tasks | "rightbrain tasks", "create task", "run task", "browse tasks" |
| Agents | "rightbrain agent", "create agent", "run agent" |
| Skills | "rightbrain skill", "manage skills" |
| Integrations | "rightbrain integration", "connect integration" |
| Environment | "use staging", "switch to staging", "use production" |
The skill supports two environments:
| Environment | API Base | When to use |
|---|---|---|
| Production | app.rightbrain.ai |
Default. Live data, real credits. |
| Staging | stag.leftbrain.me |
Testing new features, development work. |
Switch with: "use staging" or "use production"
Not sure which primitive to use? The skill includes a built-in architecture guide with:
- Selection heuristic — Tasks for single-step, Agents for multi-step reasoning
- Cost model comparison — predictable (Tasks) vs variable (Agents)
- Composition patterns — how to combine primitives for complex workflows
- Key insight — concise agent instructions work as well as verbose ones; the LLM figures out tool mechanics from descriptions
| Reference | What it covers |
|---|---|
| Tasks | Full task lifecycle: create, run, update, export, import |
| Agents | Agent creation, modes, tool attachment, sessions, observability |
| Skills | Catalog, custom skills, revision workflow, agent attachment |
| Integrations | Google Workspace OAuth, tool filtering, agent attachment |
| MCP Servers | Server connection, auth, tool discovery |
| Architecture | Choosing primitives, cost model, patterns |
| Prompt Patterns | Prompt templates and examples |
| Output Formats | Type system and validation rules |
| Task Components | Complete schema documentation |
| Image Generation | Image tasks and text-prevention |
- Run
npx rightbrain@latest login(or the skill prompts you automatically) - Sign in via your browser — don't have an account? Sign up for free during this step
- Select your organization and project
- Credentials stored securely in
~/.rightbrain/credentials.json
- Full Documentation: docs.rightbrain.ai
- LLM-Friendly Docs: docs.rightbrain.ai/llms-full.txt
- API Reference: docs.rightbrain.ai/api-reference
- Developer Blog: blog.leftbrain.me
- Claude Code CLI installed
- Node.js (for
npx rightbrain@latest login) - A Rightbrain account
claude-code-skills/
├── .claude-plugin/
│ └── marketplace.json # Plugin marketplace catalog
├── README.md
├── LICENSE
└── plugins/
└── rightbrain-manager/ # Plugin root
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
└── skills/
└── rightbrain-manager/ # Skill directory
├── SKILL.md # Main skill hub (< 500 lines)
├── assets/
│ ├── agent-template.json
│ ├── task-template.json
│ ├── export-schema-example.json
│ └── examples/
│ ├── classification.md
│ ├── extraction.md
│ └── generation.md
└── references/
├── architecture-guide.md
├── agents.md
├── skills-catalog.md
├── integrations.md
├── mcp-servers.md
├── tasks.md
├── task-components.md
├── output-formats.md
├── prompt-patterns.md
└── image-generation.md
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE for details.
Built with love by Rightbrain AI