Help us improve
Share bugs, ideas, or general feedback.
From humanize
Sends a question or task to an independent Codex instance and returns its response. Useful for parallel review, second opinions, or delegating subtasks.
npx claudepluginhub bbuf/kernel-pilot --plugin humanizeHow this skill is triggered — by the user, by Claude, or both
Slash command
/humanize:ask-codex [--codex-model MODEL:EFFORT] [--codex-timeout SECONDS] [question or task][--codex-model MODEL:EFFORT] [--codex-timeout SECONDS] [question or task]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Send a question or task to Codex and return the response.
Sends questions or tasks to Codex exec as an independent expert via bash script and returns the response. Supports model flags like gpt-5.5:high and timeouts for second opinions on code.
Use when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex for code analysis, refactoring, or automated editing
Invokes Codex CLI for AI-assisted code analysis, refactoring, and automated editing with OpenAI models, reasoning levels, and sandbox modes like read-only or workspace-write.
Share bugs, ideas, or general feedback.
Send a question or task to Codex and return the response.
Do not pass free-form user text to the shell unquoted. The question or task may contain spaces or shell metacharacters such as (, ), ;, #, *, or [.
If the user only supplied a question or task, execute:
"${CLAUDE_PLUGIN_ROOT}/scripts/ask-codex.sh" "$ARGUMENTS"
If the user supplied flags such as --codex-model or --codex-timeout, reconstruct the command so those flags remain separate shell arguments and the remaining free-form question is passed as one quoted final argument.
Example:
"${CLAUDE_PLUGIN_ROOT}/scripts/ask-codex.sh" --codex-model gpt-5.5:high "Review the following round summary (M4)..."
Never run this unsafe form:
"${CLAUDE_PLUGIN_ROOT}/scripts/ask-codex.sh" $ARGUMENTS
because the shell will re-parse the question text and can fail before ask-codex.sh starts.
| Exit Code | Meaning |
|---|---|
| 0 | Success - Codex response is in stdout |
| 1 | Validation error (missing codex, empty question, invalid flags) |
| 124 | Timeout - suggest using --codex-timeout with a larger value |
| Other | Codex process error - report the exit code and any stderr output |
.humanize/skill/<timestamp>/output.md for referencegpt-5.5:high with a 3600-second timeout