Back to Compiler
Install on Claude Cowork
Claude Cowork uses the same plugin format as Claude Code. Your compiled agent includes skills, agents, and project instructions.
Step 1
Upload the plugin files
Copy the generated .claude-plugin/ directory into your Cowork project:
# From your project directory
cp -r compiled-agent/.claude-plugin/ .claude-plugin/
cp compiled-agent/CLAUDE.md CLAUDE.mdStep 2
Open in Cowork
Open your project in Claude Cowork. The plugin will be automatically detected from the .claude-plugin/ directory.
Your skills will appear in the skill picker within the Cowork interface.
Step 3
Test your agent
Select your compiled skill from the skill picker and test with sample data. The agent includes both an autonomous mode and an advisory mode.
# Two agent modes available:
# 1. Autonomous — executes tasks independently
# 2. Advisory — answers questions about the workflowFile structure
Identical to Claude Code — both platforms use the same plugin format.
your-project/
├── .claude-plugin/
│ ├── plugin.json
│ └── skills/
│ ├── task/SKILL.md
│ └── ask/SKILL.md
├── .claude/
│ └── agents/
│ ├── autonomous.md
│ └── advisory.md
└── CLAUDE.md