Documentation Index
Fetch the complete documentation index at: https://mintlify.com/openai/codex-plugin-cc/llms.txt
Use this file to discover all available pages before exploring further.
What background mode does
When you pass--background to any command that supports it, the plugin:
- Enqueues the job and records it in the repository’s job state.
- Spawns a detached
task-workerprocess that runs Codex independently. - Returns immediately so you can continue working in Claude Code.
/codex:status, /codex:result, and /codex:cancel.
Starting a background job
Both review commands and/codex:rescue support --background:
review-<id> for review jobs and task-<id> for rescue jobs. You can see all job IDs in /codex:status output.
Checking status
/codex:status shows all running and recent jobs for the current repository. To inspect a specific job, pass its ID:
If you omit the job ID from
status, result, or cancel, the command operates on the most recent job.| State | Meaning |
|---|---|
queued | Enqueued; the worker process is starting. |
running | Codex is actively working on the task. |
completed | The job finished successfully. |
cancelled | The job was cancelled before or during execution. |
Getting the result
Once a job iscompleted, retrieve its full output with /codex:result:
Cancelling a job
While a job isqueued or running, cancel it with /codex:cancel:
cancelled.