XiaomiMiMo/MiMo-Code/packages/opencode/src/skill/builtin/.bundle/codex/SKILL.md
codex
Run, configure, and troubleshoot OpenAI Codex CLI in non-interactive headless environments. Use for Codex automation in Bash or PowerShell, native Windows or WSL2, shell scripts, CI/CD, Docker, Kubernetes, remote servers, agent harnesses, or batch jobs; for constructing `codex exec` commands; selecting sandbox and approval modes; consuming JSONL events or structured output; resuming sessions; passing prompts through stdin; and handling failures caused by unavailable interactive input such as `re
- Source repository stars
- 12,632
- Declared platforms
- 1
- Static risk flags
- 2
- Last source update
- 2026-08-04
- Source checked
- 2026-08-04
Decision brief
What it does—and where it fits
Use Codex CLI as a deterministic, non-interactive worker suitable for automation and agent orchestration.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Declared | Source record | Install path and trigger |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/XiaomiMiMo/MiMo-Code --skill "packages/opencode/src/skill/builtin/.bundle/codex"Inspect the Agent Skill "codex" from https://github.com/XiaomiMiMo/MiMo-Code/blob/f1e99640da903b22c1147b9fee15d5fdf5691c21/packages/opencode/src/skill/builtin/.bundle/codex/SKILL.md at commit f1e99640da903b22c1147b9fee15d5fdf5691c21. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Workspace-scoped implementation
Use as the default for autonomous repository work:
Use as the default for autonomous repository work: - 02
Operating Rules
1. Use codex exec, not the interactive codex TUI. 2. Pass the task as the positional PROMPT argument. Do not use -p for the prompt; -p selects a profile. 3. For ordinary unattended code changes, prefer:
Use codex exec, not the interactive codex TUI.Pass the task as the positional PROMPT argument. Do not use -p for the prompt; -p selects a profile.For ordinary unattended code changes, prefer: - 03
Choose the Execution Mode
Use when the task must not modify files:
Use when the task must not modify files:Use as the default for autonomous repository work:Use only when the enclosing container, VM, or sandbox enforces the real security boundary: - 04
Read-only analysis
Use when the task must not modify files:
Use when the task must not modify files: - 05
Externally isolated unrestricted execution
Use only when the enclosing container, VM, or sandbox enforces the real security boundary:
Use only when the enclosing container, VM, or sandbox enforces the real security boundary:Never recommend --yolo on a normal developer machine or a runner containing unrelated secrets, host mounts, SSH keys, cloud credentials, or a Docker socket.
Permission review
Static risk signals and limitations
Reads files
The documentation asks the agent to read local files, directories, or repositories.
Inspect the repository and available context before making assumptions.Runs scripts
The documentation asks the agent to run terminal commands or scripts.
npm test 2>&1 | codex exec "Analyze this test output and fix the repository."Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 87/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 12,632 | Source | Repository attention, not individual Skill quality |
| Compatibility | 1 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- XiaomiMiMo/MiMo-Code
- Skill path
- packages/opencode/src/skill/builtin/.bundle/codex/SKILL.md
- Commit
- f1e99640da903b22c1147b9fee15d5fdf5691c21
- License
- MIT
- Collected
- 2026-08-04
- Default branch
- main
View the original SKILL.md
Codex CLI
Use Codex CLI as a deterministic, non-interactive worker suitable for automation and agent orchestration.
Operating Rules
- Use
codex exec, not the interactivecodexTUI. - Pass the task as the positional
PROMPTargument. Do not use-pfor the prompt;-pselects a profile. - For ordinary unattended code changes, prefer:
codex exec \
-C /path/to/repo \
--sandbox workspace-write \
--ask-for-approval never \
"<TASK>"
- Use
--yoloonly inside an externally hardened and disposable runner. It disables Codex approvals and sandboxing. - For harnesses and CI, prefer
--jsonplus--output-last-message. - Do not make the run depend on a human answering questions. Resolve ambiguity using repository evidence and conservative defaults.
- Treat credentials as secrets. Inject
CODEX_API_KEYonly into the singlecodex execprocess when possible. - Before giving version-sensitive advice, inspect
codex exec --helpor current official Codex documentation if available. - On Windows, choose one execution environment per task: native PowerShell for Windows toolchains or WSL2 for Linux toolchains. Do not casually mix paths, installations, or authentication across them.
Choose the Execution Mode
Read-only analysis
Use when the task must not modify files:
codex exec \
-C /path/to/repo \
--sandbox read-only \
--ask-for-approval never \
"Analyze the repository and report risks. Do not modify files."
Workspace-scoped implementation
Use as the default for autonomous repository work:
codex exec \
-C /path/to/repo \
--sandbox workspace-write \
--ask-for-approval never \
"Implement the task, run relevant tests, and report unresolved blockers."
Externally isolated unrestricted execution
Use only when the enclosing container, VM, or sandbox enforces the real security boundary:
codex exec \
-C /workspace/repo \
--yolo \
"Implement the task and validate the result."
Never recommend --yolo on a normal developer machine or a runner containing unrelated secrets, host mounts, SSH keys, cloud credentials, or a Docker socket.
Construct an Autonomous Prompt
When headless execution could encounter choices, prepend these instructions:
Work fully autonomously.
Do not ask the user questions and do not request interactive input.
Inspect the repository and available context before making assumptions.
When several valid approaches exist, choose the option that:
1. minimizes unrelated changes,
2. preserves backward compatibility,
3. introduces the fewest new dependencies,
4. avoids destructive or irreversible actions.
Continue until the task is complete or a concrete blocking error is reached.
Record assumptions, validation performed, and unresolved blockers in the final response.
Do not simulate "always select the first option." Option ordering is not a safety or quality policy. Apply the explicit decision rules above instead.
Handle request_user_input Failures
When Codex reports that request_user_input is unavailable in Default mode or non-interactive mode:
- Confirm the invocation uses
codex execand is intentionally headless. - Add the autonomous prompt policy above.
- Supply missing decisions in the task prompt or
AGENTS.mdwhen they are known in advance. - Replace open-ended requests such as "ask me which approach" with deterministic selection criteria.
- If the choice is safety-critical, destructive, or impossible to infer, make the run fail clearly rather than selecting randomly.
- Do not attempt to emulate terminal keystrokes unless the subprocess itself, rather than Codex, requires input and the workflow explicitly defines the safe answer.
Pass Prompts and Context
Use a direct positional prompt:
codex exec "Summarize the repository structure."
Read the prompt from stdin:
codex exec - < prompt.md
Pipe dynamic context while retaining an explicit task:
npm test 2>&1 | codex exec "Analyze this test output and fix the repository."
Use --skip-git-repo-check only for intentional one-off directories outside Git:
codex exec \
--skip-git-repo-check \
-C /tmp/task \
"Analyze the files in this directory."
Produce Harness-Friendly Output
Capture only the final message
codex exec \
-C /workspace/repo \
--output-last-message /output/final.md \
"Review the codebase."
Stream JSONL events
codex exec \
-C /workspace/repo \
--json \
--sandbox workspace-write \
--ask-for-approval never \
"Run tests and fix failures." \
> /output/events.jsonl
Expect event families such as thread.started, turn.started, turn.completed, turn.failed, item.*, and error.
Capture events and the final answer together
codex exec \
-C /workspace/repo \
--json \
--sandbox workspace-write \
--ask-for-approval never \
--output-last-message /output/final.md \
"Complete the task autonomously." \
| tee /output/events.jsonl
Do not parse human-readable progress text when --json is available.
Require Structured Final Output
Create a JSON Schema and pass it with --output-schema:
codex exec \
-C /workspace/repo \
--sandbox workspace-write \
--ask-for-approval never \
--output-schema /input/result.schema.json \
--output-last-message /output/result.json \
"Implement the task, validate it, and return the requested structured result."
A useful harness schema usually includes:
status:success,partial, orfailedsummary: concise outcomechanged_files: repository-relative pathsvalidation: commands run and resultsassumptions: decisions made without user inputblockers: concrete unresolved problems
Set additionalProperties to false when downstream parsing must be strict.
Resume or Avoid Persistence
Resume the most recent session for the current working directory:
codex exec resume --last "Continue the previous task and fix remaining issues."
Resume a specific session:
codex exec resume "$SESSION_ID" "Continue with the next stage."
Use an ephemeral run when rollout persistence is undesirable:
codex exec --ephemeral "Analyze the repository."
Do not rely on --last across unrelated working directories unless deliberately using the relevant all-directory option supported by the installed CLI.
Authenticate Safely
For a local interactive login:
codex login
For a headless machine with device-code login enabled:
codex login --device-auth
For a single automated invocation:
CODEX_API_KEY="$OPENAI_API_KEY" \
codex exec --json "Triage the repository."
Do not expose API keys as broad job-level environment variables in jobs that execute repository-controlled code. Never commit or print ~/.codex/auth.json.
Windows, PowerShell, and WSL2
For native Windows headless use:
- Install with the official PowerShell installer or npm.
- Prefer PowerShell 7.4 or newer for JSONL redirection.
- Build argument arrays and invoke them with
& codex @args; avoid fragile backtick-heavy command construction. - Check
$LASTEXITCODEafter every Codex invocation. PowerShell error preferences alone are not a substitute for checking a native process exit code. - Keep stdout JSONL separate from stderr diagnostics. Do not use
2>&1when stdout must remain parseable JSONL. - Configure
%USERPROFILE%\.codex\config.tomlwith[windows] sandbox = "elevated"when available; useunelevatedonly as the fallback. - Preserve the task-level policy
--sandbox workspace-write --ask-for-approval neverfor ordinary autonomous edits. The native Windows sandbox implementation and the CLI task policy are separate controls.
For WSL:
- Use WSL2, not WSL1.
- Install and authenticate Codex inside WSL as a Linux installation.
- Keep repositories under
~/code/..., not/mnt/c/..., for better performance and fewer permission, symlink, and file-watcher problems. - Do not pass credentials through visible
wsl.execommand-line strings.
See references/windows.md for installation, PowerShell wrappers, JSONL parsing, sandbox configuration, WSL2 patterns, and Windows-specific troubleshooting.
Container and CI Requirements
When generating a Docker, Kubernetes, or CI design:
- Mount only the intended workspace and output directory.
- Run as a non-root user when practical.
- Do not mount the host Docker socket.
- Do not mount home directories, SSH keys, or cloud credential directories.
- Restrict network access unless the task explicitly needs it.
- Apply CPU, memory, process, and execution-time limits outside Codex.
- Preserve stdout, stderr, exit status, JSONL events, and the final message separately.
- Validate repository diffs and test results before treating a run as successful.
- Prefer a fresh worktree or disposable checkout per task.
See references/recipes.md for ready-to-use shell, Docker, CI, and parser patterns.
Diagnose Failures
Use this order:
- Run
codex --versionandcodex exec --help. - Verify the command uses a positional prompt or
-for stdin. - Verify the working directory and Git repository status.
- Verify authentication without printing secret material.
- Check whether sandbox policy blocks required reads, writes, commands, sockets, or network access.
- Check whether approval policy is causing an impossible prompt in headless mode.
- Inspect stderr and the JSONL
errororturn.failedevents. - Re-run with a smaller, deterministic task that reproduces the failure.
- Do not silently switch to
--yoloas a troubleshooting shortcut.
Completion Standard
For implementation tasks, consider the run complete only when Codex has:
- inspected the relevant repository context,
- made the requested changes,
- run the most relevant available validation,
- reviewed the resulting diff for unrelated changes,
- reported assumptions and unresolved blockers,
- produced machine-readable status when requested by the harness.
Alternatives
Compare before choosing
NousResearch/hermes-agent
codex
Delegate coding to OpenAI Codex CLI (features, PRs).
garrytan/gstack
codex
OpenAI Codex CLI wrapper — three modes. (gstack)
notque/vexjoy-agent
codex
Run benchmark-selected GPT-5.6 work through the Codex CLI.
PramodDutta/qaskills
RAG Regression Testing
Gate RAG pipelines in CI with versioned golden eval sets, per-metric thresholds, baseline drift detection, and a build that fails when retrieval or answer quality regresses.