Back to Compiler
Install on Claude Code
Your compiled agent works as a Claude Code plugin with skills, agents, and a CLAUDE.md configuration.
Step 1
Copy files to your project
After downloading, copy the generated files into your project root:
# From your project directory
cp -r compiled-agent/.claude-plugin/ .claude-plugin/
cp compiled-agent/CLAUDE.md CLAUDE.mdIf you already have a CLAUDE.md, merge the generated content into your existing file.
Step 2
Verify the plugin loads
Open Claude Code in your project and check the plugin is detected:
claude
# Then type: /skills
# Your compiled skills should appear in the listStep 3
Test your agent
Invoke your compiled agent skill by name:
# In Claude Code, use the skill name from your compilation
# Example: /your-skill-name
# Or reference it in conversation:
# "Use the [skill name] to process this data"File structure
your-project/
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest
│ └── skills/
│ ├── task/SKILL.md # Task execution skill
│ └── ask/SKILL.md # Advisory/Q&A skill
├── .claude/
│ └── agents/
│ ├── autonomous.md # Autonomous agent config
│ └── advisory.md # Advisory agent config
└── CLAUDE.md # Project-level instructions