Codex Delegator banner
eddiearc eddiearc

Codex Delegator

AI community

Description

Claude Code Agent Skill that enables automatic delegation of complex, logic-intensive tasks to OpenAI Codex CLI for AI-to-AI collaboration and problem-solving

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Codex Delegator - Claude Code Agent Skill

Enables Claude Code to automatically delegate complex tasks to OpenAI Codex CLI for AI-to-AI collaboration

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

What is This?

**Codex Delegator** is a **Claude Code Agent Skill** - a specialized module that extends Claude Code with the ability to automatically delegate complex, logic-intensive programming tasks to OpenAI's Codex CLI.

Think of it as giving Claude Code a specialized co-worker (Codex) for handling particularly challenging problems.

What It Does

When you're working with Claude Code and encounter:

  • 🔧 Complex backend logic implementations
  • 🧮 Intricate algorithm optimizations
  • 🐛 Persistent bugs that resist multiple fix attempts
  • 🔄 Race conditions and concurrency issues
  • 💡 Problems needing a fresh perspective

Claude Code can automatically invoke Codex to provide alternative solutions, leveraging the strengths of both AI systems.

How It Works

You: "This payment processing bug keeps happening under high load,
     I've tried 3 different fixes"

  ↓

Claude Code: [Analyzes problem, recognizes delegation criteria]
"I'm going to use Codex to help debug this race condition..."

  ↓

Codex: [Analyzes with fresh perspective, generates solution]

  ↓

Claude Code: [Validates solution, runs tests, integrates]
"Here's the fix. The issue was a race condition in Redis cache updates..."

Installation

Prerequisites

  1. Claude Code - Install from claude.com/claude-code
  2. OpenAI Codex CLI - Install globally:
    npm i -g @openai/codex
  3. Authentication - ChatGPT Plus/Pro/Business/Enterprise account OR OpenAI API key:
    codex auth

Install the Skill

**Option 1: Download and Extract**

  1. Download codex-delegator.zip
  2. Extract to ~/.claude/skills/codex-delegator
  3. Restart Claude Code

**Option