codex-supervisionlisted
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