# Cheat Sheet — Codex Plugin: The Seven Commands

| Command | Purpose | Changes code? | Steerable? |
|---|---|---|---|
| `/codex:review` | Standard read-only review of the current work | No | No |
| `/codex:adversarial-review` | Critical scrutiny of design & assumptions | No | Yes (focus text) |
| `/codex:rescue` | Delegate a task to Codex (bug, fix, continuation) | Yes | Yes |
| `/codex:transfer` | Continue a Claude session as a Codex thread | — | — |
| `/codex:status` | Show running & recent Codex jobs | No | — |
| `/codex:result` | Retrieve the final result of a finished job | No | — |
| `/codex:cancel` | Abort an active background job | No | — |

## Typical Workflows

```
/codex:review                                  # Review before shipping
/codex:rescue investigate why the build fails  # Hand off a problem
/codex:adversarial-review --background         # start a long-running job …
/codex:status                                  # … is the job still going?
/codex:result                                  # … pick up the result
```

## Key Flags (rescue)

`--background` · `--wait` · `--resume` · `--fresh` · `--model <name>` · `--effort <low|medium|high>`

Source: README of the repository `openai/codex-plugin-cc` (Apache-2.0).
