Unified guidance for using Codex CLI and AutoAgent together. Use when the user mentions codex, autoagent, dispatch, asks which tool to use for analysis, or when Claude detects a task matching either tool's strengths — code review, security audits, multi-step coding, web research, or file analysis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-orchestrator-plugin:orchestratorThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have two complementary external analysis tools available. Each has distinct strengths. This skill guides when and how to use them.
You have two complementary external analysis tools available. Each has distinct strengths. This skill guides when and how to use them.
| Dimension | Codex CLI | AutoAgent |
|---|---|---|
| Invocation | codex exec or /codex | auto_oneshot.py or /auto |
| Model | gpt-5.4 (default) | COMPLETION_MODEL (default: claude-3-5-sonnet) |
| Execution | Single-pass, non-interactive | Multi-turn, agent orchestration |
| Environment | Read-only sandbox (default) | Docker sandbox or local |
| Best for | Static analysis, code review | Dynamic tasks, research, coding |
| Speed | Fast (single LLM call) | Slower (multi-agent, imports) |
| Risk | Low (read-only default) | Moderate (can execute code) |
Codex excels at focused, single-pass analytical tasks:
Invoke via:
/codex <task> — explicit user commandcodex-agent subagent — Claude's autonomous delegation/dispatch <task> — automatic routingPrompt best practices for Codex:
file:line - issue"AutoAgent excels at multi-step tasks requiring execution or browsing:
Invoke via:
/auto <task> — explicit user commandauto-agent subagent — Claude's autonomous delegation/dispatch <task> — automatic routingAgent functions:
| Function | Use Case |
|---|---|
get_system_triage_agent | Complex tasks — auto-routes internally |
get_coding_agent | Write and execute code |
get_websurfer_agent | Browse the web |
get_filesurfer_agent | Read/analyze files |
When unsure which tool to use, /dispatch <task> analyzes the task and routes automatically:
For complex tasks, use both tools together:
The router-agent subagent can be spawned when Claude wants to automatically pick the right tool. It analyzes task signals and dispatches to either codex-agent or auto-agent.
brew install codex) and authenticated (codex login)cd ~/Control/autoagent && pip install -e .)--local flag without Docker.| Issue | Solution |
|---|---|
codex: command not found | brew install codex then codex login |
| AutoAgent import errors | cd ~/Control/autoagent && pip install -e . |
| Docker not available | Use --local flag with /auto |
| Timeout on AutoAgent | Break task into smaller pieces |
| Codex API key issues | Run codex login to re-authenticate |
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub zmuhls/cc-orchestrator-plugin --plugin cc-orchestrator-plugin