OpenAgents Control (OAC) - Multi-agent orchestration and automation for Claude Code.
OpenAgents Control brings powerful multi-agent capabilities to Claude Code, including:
# Add the OpenAgents Control marketplace
/plugin marketplace add darrenhinde/OpenAgentsControl
# Install the plugin
/plugin install oac
# Clone the repo
git clone https://github.com/darrenhinde/OpenAgentsControl.git
cd OpenAgentsControl
# Load plugin locally
claude --plugin-dir ./claude-plugin
After installation, test the plugin:
# Verify installation
/oac:hello
The plugin uses shared context from the main OpenAgents Control repository via symlinks.
claude-plugin/
├── .claude-plugin/plugin.json
├── skills/ # Claude-specific skills
├── agents/ # Claude-specific agents
├── hooks/ # Event-driven automation
├── commands/ # Custom slash commands
└── context -> ../.opencode/context/ # Symlinked shared context
Create skill directory:
mkdir -p claude-plugin/skills/my-skill
Create SKILL.md:
```markdown
Description of what this skill does.
You are a helpful assistant that...
3. Test locally:
```bash
claude --plugin-dir ./claude-plugin
/oac:my-skill
Create hooks/hooks.json:
{
"hooks": {
"PostToolUse": [{
"matcher": "Write|Edit",
"hooks": [{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/format.sh",
"timeout": 30
}]
}]
}
}
Contributions welcome! See the main OpenAgents Control repository for contribution guidelines.
MIT License - see LICENSE for details.
Version: 1.0.0
Last Updated: 2026-02-16
Status: Active Development