by jarrodwatts
Delegate tasks to Codex GPT 5.2 directly from within Claude Code.
# Add to your Claude Code skills
git clone https://github.com/jarrodwatts/claude-delegatorGPT expert subagents for Claude Code. Five specialists that can analyze AND implement—architecture, security, code review, and more.

Inside a Claude Code instance, run the following commands:
Step 1: Add the marketplace
/plugin marketplace add jarrodwatts/claude-delegator
Step 2: Install the plugin
/plugin install claude-delegator
Step 3: Run setup
/claude-delegator:setup
Done! Claude now routes complex tasks to GPT experts automatically.
Note: Requires Codex CLI. Setup guides you through installation.
Claude gains a team of GPT specialists via native MCP. Each expert has a distinct specialty and can advise OR implement.
| What You Get | Why It Matters | |--------------|----------------| | 5 domain experts | Right specialist for each problem type | | Dual mode | Experts can analyze (read-only) or implement (write) | | Auto-routing | Claude detects when to delegate based on your request | | Synthesized responses | Claude interprets GPT output, never raw passthrough |
| Expert | What They Do | Example Triggers | |--------|--------------|------------------| | Architect | System design, tradeoffs, complex debugging | "How should I structure this?" / "What are the tradeoffs?" | | Plan Reviewer | Validate plans before you start | "Review this migration plan" / "Is this approach sound?" | | Scope Analyst | Catch ambiguities early | "What am I missing?" / "Clarify the scope" | | Code Reviewer | Find bugs, improve quality | "Review this PR" / "What's wrong with this?" | | Security Analyst | Vulnerabilities, threat modeling | "Is this secure?" / "Harden this endpoint" |
You: "Is this authentication flow secure?"
↓
Claude: [Detects security question → selects Security Analyst]
↓
┌─────────────────────────────┐
│ mcp__codex__codex │
│ → Security Analyst prompt │
│ → GPT analyzes your code │
└─────────────────────────────┘
...