| name | codex-cli |
| description | Reference for using OpenAI Codex CLI to handle complex coding tasks. Use when Research-Claw needs to delegate multi-file projects, iterative debugging, or complex code generation to a specialized AI coding tool. Trigger words: codex, coding CLI, delegate coding, complex project.
|
Codex CLI (OpenAI)
Terminal-based AI coding agent by OpenAI. Reads, edits, and runs code locally in a sandboxed environment. Built in Rust.
Detect Installation
which codex
codex --version
Install
npm i -g @openai/codex
Requires an OpenAI API key or ChatGPT account (prompted on first run).
Non-Interactive Usage (exec)
For programmatic invocation from Research-Claw, use codex exec:
codex exec "Refactor the auth module to use JWT tokens"
echo "Fix the failing test in src/utils.test.ts" | codex exec -
codex exec --full-auto "Add error handling to all API routes"
codex exec -a never -s workspace-write "Update dependencies and fix breaking changes"
codex exec -o result.md "Explain the architecture of this project"
Key Flags
| Flag | Description |
|---|
-m, --model <model> | Override model (e.g. gpt-5-codex) |
-a, --ask-for-approval <mode> | untrusted / on-request / never |
-s, --sandbox <policy> | read-only / workspace-write / danger-full-access |
--full-auto | Shortcut: workspace-write sandbox + on-request approvals |
--add-dir <path> | Grant write access to additional directories |
-C, --cd <path> | Set working directory for the agent |
-i, --image <path> | Attach image files (comma-separated) |
-o, --output-last-message <path> | Write final response to file |
--json | Print newline-delimited JSON events |
--ephemeral | Don't persist session to disk |
--skip-git-repo-check | Allow running outside a git repository |
--oss | Use local OSS model via Ollama |
Research-Claw exec Patterns
exec("codex exec --full-auto -C /path/to/project 'Implement the feature described in TODO.md'")
exec("codex exec -s read-only -o /tmp/analysis.md -C /path/to/project 'Analyze code quality and list issues'")
exec("codex exec -m gpt-5-codex --full-auto 'Fix all TypeScript type errors'")
Docs