How this skill is triggered — by the user, by Claude, or both
Slash command
/agents-bridge:codexThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Invoke OpenAI Codex CLI for cross-model collaboration.
Invoke OpenAI Codex CLI for cross-model collaboration.
!"${CLAUDE_PLUGIN_ROOT}/scripts/codex" --info 2>&1 || echo "(codex CLI not found -- install with: npm install -g @openai/codex)"
Use the configuration above to determine the current default model and available overrides. Do NOT guess model names.
# Run with prompt
"${CLAUDE_PLUGIN_ROOT}/scripts/codex" exec "$ARGUMENTS"
# Or with overrides (use values from Current Configuration above)
CODEX_MODEL=<model> CODEX_REASONING=<level> "${CLAUDE_PLUGIN_ROOT}/scripts/codex" exec "$ARGUMENTS"
# Resume a previous conversation
"${CLAUDE_PLUGIN_ROOT}/scripts/codex" exec resume <SESSION_ID> "Follow up prompt..."
Codex returns a session ID after each run. To continue that conversation:
"${CLAUDE_PLUGIN_ROOT}/scripts/codex" exec resume <SESSION_ID> "Follow up prompt..."
When to resume:
Important: Capture the session ID from the previous run's output to enable resumption.
| Variable | Description |
|---|---|
CODEX_MODEL | Model override |
CODEX_REASONING | Reasoning effort: low, medium, high, xhigh |
CODEX_SANDBOX | Sandbox mode: read-only, workspace-write, danger-full-access (exec only) |
npx claudepluginhub bengous/claude-code-plugins --plugin agents-bridgeUse when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex for code analysis, refactoring, or automated editing
Runs Codex CLI tasks with configurable model, reasoning effort, and sandbox mode. Handles session resume and stdin redirection to prevent hangs.
Delegates complex code generation, refactoring, architectural analysis, and review tasks to OpenAI's Codex CLI (GPT-5.3-codex models) via safe workflows with sandboxing and approvals. Activates on explicit triggers like 'use codex' or 'codex exec'.