Claude Code Plugin Install
The rotor.sh Claude Code plugin adds the /rotor:new-workflow slash command and agent rules to Claude Code, letting you scaffold GTM workflows without leaving your editor.
Quick Install (Marketplace)
/plugin marketplace add rotor-sh/claude-plugin
/plugin install rotorThat's it. Restart Claude Code and run /rotor:new-workflow outbound-with-approvals to scaffold your first workflow.
Manual Install (Fallback)
If the marketplace is unavailable or you prefer local control:
git clone https://github.com/rotor-sh/claude-plugin ~/.claude/plugins/rotorThen in Claude Code:
/plugin install ~/.claude/plugins/rotorWhat Gets Installed
After installing, Claude Code gains:
| Feature | Description |
|---|---|
/rotor:new-workflow | Skill that scaffolds starter templates via rotor template apply |
| Agent rules | Copies @rotorsh/sdk/CLAUDE.md to your project root when you scaffold |
| MCP suggestion | Guides you through claude mcp add rotor ... if not already wired |
Using /rotor:new-workflow
/rotor:new-workflow <template-name>
Available template names:
| Template | Use case |
|---|---|
outbound-with-approvals | Outbound email/message sequences requiring human approval |
enrichment-dag | Parallel data enrichment from multiple providers |
attribution-rollup | Daily cron attribution rollup |
reply-classifier | LLM-based reply intent classification |
Example
/rotor:new-workflow outbound-with-approvals
Claude Code will:
- Check
rotorCLI is installed (install if missing) - Add
@rotorsh/sdkto your project if absent - Run
rotor template apply outbound-with-approvals - Show customization options from the generated README
- Update
CLAUDE.mdwith rotor agent rules - Remind you to set
ROTOR_API_KEY - Suggest wiring the MCP server
Verify Installation
After installing, check the skill is available:
/rotor:new-workflow --help
Or ask Claude Code directly:
"What rotor templates are available?"
Claude should list the four starter templates.
Update the Plugin
To update to the latest version:
Marketplace install
/plugin update rotorManual install
cd ~/.claude/plugins/rotor && git pull
/plugin install ~/.claude/plugins/rotorTroubleshooting
/rotor:new-workflow not recognized after install:
- Restart Claude Code completely (quit and reopen)
- Verify the skill file exists:
ls ~/.claude/plugins/rotor/skills/new-workflow/SKILL.md - Re-run
/plugin install rotor
rotor template apply command not found:
The rotor CLI is separate from the Claude Code plugin. Install it globally:
npm install -g rotor-cli
rotor --versionPlugin install fails with "repository not found":
Use the manual install method above. If rotor-sh/claude-plugin is not yet on GitHub, clone from the main repo:
git clone https://github.com/shyftai/rotor ~/.claude/plugins/rotor-src
cp -r ~/.claude/plugins/rotor-src/packages/rotor-plugin ~/.claude/plugins/rotor
/plugin install ~/.claude/plugins/rotorNeed help? Open an issue on GitHub or ask in the Anthropic Discord #rotor channel.