codex

Solid

Claude x Codex bridge — delegate mechanical or bulk implementation to the OpenAI Codex CLI, get an independent cross-model review of the current uncommitted diff, or ask Codex a read-only second-opinion question. Triggers "use codex", "have codex do", "have codex review", "have codex check", "codex exec", "second opinion from codex", "cross-check with codex", "delegate to codex", "ask codex". Use when you want a different model family to verify your own diff, parallelize bulk work, or get a fast read-only opinion without spending Claude turns.

AI & Automation 42 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
54
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Codex Bridge Invoke the OpenAI Codex CLI from inside a Claude session. Three subcommands map to three distinct use cases. All subcommands are called via: ```bash bun "$HOME/.claude/src/scripts/codex-run.ts" <subcommand> [args] ``` --- ## Subcommands ### exec -- delegate mechanical or bulk work ```bash bun "$HOME/.claude/src/scripts/codex-run.ts" exec "the full task description" ``` Runs Codex in a `workspace-write` sandbox. Use this when a task is: - Mechanical (repetitive edits, file scaffolding, boilerplate generation) - Bulk (touching many files at once where Claude's serial context would be slow) - Parallelizable with Claude's own work (start Codex on one half while Claude handles the other) **Quota routing**: Codex is metered by messages per ~5-hour window, not by tokens. Hand it one big complete task, not a sequence of small steps. A single `exec` call for a whole feature costs the same quota as one `exec` call for a single file. After `exec` returns, ALWAYS review Codex's diff before trusting it: ```bash git diff ``` Then run the proof gate: ```bash bun run proof ``` ### review -- independent cross-model diff review ```bash bun "$HOME/.claude/src/scripts/codex-run.ts" review ``` Runs in a `read-only` sandbox. Codex reads the repo itself (`git diff`, `git status`) and reports findings by severity (HIGH / MEDIUM / LOW), covering correctness bugs, security issues, and obvious quality problems. Use this after you have finished a diff and want a second o...

Details

Author
darkroomengineering
Repository
darkroomengineering/cc-settings
Created
7 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category