Rightbrain Claude Code Skills

Official Claude Code plugin for Rightbrain AI — the platform for embedding AI into existing tech stacks via a single API call.
What is Rightbrain?
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.
Learn more | Developer Blog
What's Included
| Plugin | Description |
|---|
| rightbrain-manager | Complete manager for the Rightbrain API. Create and manage Tasks, TaskAgents, Skills, Integrations, and MCP Servers. |
Quick Start
Option A: Install via Claude Code (recommended)
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.
Option B: Manual install
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 login
Restart Claude Code and the skill will be available.
Skill: rightbrain-manager
A comprehensive skill for managing the full Rightbrain platform from Claude Code.
Features
- 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
Trigger Phrases
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" |
Environment Support
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"
Architecture Guide
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 Files