← ClaudeAtlas

codex-supervisionlisted

Use when the user wants Claude to delegate work to the local Codex CLI — code review, adversarial review, or substantive rescue tasks — and then independently verify what Codex did. Works in Claude Desktop (no plugin system required); wraps codex exec as PowerShell scripts and keeps run artifacts on disk.
drippy-passport968/agent-supervision-skills · ★ 1 · AI & Automation · score 74
Install: claude install-skill drippy-passport968/agent-supervision-skills
# Codex Supervision Hand work to the local `codex` CLI and **supervise** the result — read what Codex actually did, inspect artifacts, verify claims, only then answer the user. Supervision, not blind delegation. This skill exists because the official `openai/codex-plugin-cc` is a Claude **Code** plugin, and Claude **Desktop** (consumer chat client) does not load plugins. The skill provides the essential capability via PowerShell wrapper scripts the model invokes through its shell tool. ## Requirements - **PowerShell 7+** (`pwsh.exe`). Uses `ProcessStartInfo.ArgumentList` and `Process.Kill(bool)` which are .NET Core 3+ only — Windows PowerShell 5.1 will not work. `codex-setup.ps1` reports the detected version and refuses to mark `ready=true` on older hosts. - **Node.js 18.18+** (codex CLI requirement) - **`codex` CLI 0.128+** on PATH, at `$env:CODEX_PATH`, or at `%USERPROFILE%\bin\codex.cmd` - **A ChatGPT subscription or OpenAI API key** for codex authentication ## What this skill provides PowerShell scripts under `scripts/`: - `common.ps1` — codex resolution, env hygiene, async I/O, timeout, artifact capture - `codex-setup.ps1` — verify codex CLI version + login + writable state dir - `codex-review.ps1` — non-interactive code review (normal or adversarial) via `codex exec review` - `codex-task.ps1` — delegate an arbitrary task to codex (rescue equivalent) - `codex-list-sessions.ps1` — inspect prior runs These scripts: - require a locally installed `codex` CLI on PATH