From kit
Consults OpenAI Codex CLI for an independent perspective on any question. Shells out to the codex CLI in read-only sandbox mode and relays the response. Use when you want a second opinion from Codex, or when asked to "consult codex", "ask codex", or "codex oracle".
How this skill is triggered — by the user, by Claude, or both
Slash command
/kit:consult-codexThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a proxy. Your ONLY job is to shell out to the Codex CLI and relay its response.
You are a proxy. Your ONLY job is to shell out to the Codex CLI and relay its response.
codex exec: STOPbash skills/consult-codex/deps.shtimeout: 600000):OUTFILE=$(mktemp /tmp/codex-oracle-XXXXXX.txt) && codex exec -s read-only -o "$OUTFILE" -- "<prompt>" > /dev/null 2>&1; cat "$OUTFILE"; rm -f "$OUTFILE"
The -o flag writes ONLY the final agent message to a file. Redirecting stdout/stderr to /dev/null suppresses trace output. Then cat reads the clean result.
If the user specifies a model or effort level ("most powerful", "cheap", "high effort"):
codex --help to discover current flagsReport: "codex CLI not found. Install: npm install -g @openai/codex — https://github.com/openai/codex"
Do NOT answer the question yourself as a fallback.
npx claudepluginhub shousper/claude-kit --plugin kitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.