From humanize
GPT-Pro consult for the humanize RLCR workflow. Do not use independently — only invoke as part of a humanize command, agent, or workflow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/humanize:ask-gpt-pro [--timeout SECONDS] [question or task][--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 ChatGPT Pro Extended (GPT-5 Pro) and return its
Send a question or task to ChatGPT Pro Extended (GPT-5 Pro) and return its response. GPT-5 Pro performs deep reasoning with built-in web research, making this ideal for hard problems that benefit from up-to-date information and careful thinking. Typical wall-clock per call is 5-20 minutes.
This skill is the humanize plugin's GPT-Pro counterpart to /humanize:ask-codex.
Do not use it independently — only invoke it as part of a humanize command, agent,
or workflow.
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-gpt-pro.sh" "$ARGUMENTS"
If the user supplied flags such as --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-gpt-pro.sh" --timeout 1800 "Compare recent agentic-coding benchmarks"
Never run this unsafe form:
"${CLAUDE_PLUGIN_ROOT}/scripts/ask-gpt-pro.sh" $ARGUMENTS
because the shell will re-parse the question text and can fail before ask-gpt-pro.sh starts.
Each call typically runs 5-20 minutes. Always invoke this skill with:
run_in_background: truetimeout: 3600000 (60 min)Wait for the completion notification. Do NOT poll output files separately — the wrapper script's polling loop is already doing that.
| Exit Code | Meaning |
|---|---|
| 0 | Success - response is in stdout |
| 1 | Validation error (missing tool, empty question, invalid flags) or empty response |
| 124 | Timeout - the overall wall-clock deadline was hit before completion. Recover with ssh macmini gpt-pro-relay fetch <run_id> --timeout 0 |
| Other | gpt-pro-relay process error - inspect stderr; common reason values: needs_reauth, worker_exception, prompt_too_large |
.humanize/skill/<timestamp>/output.md for referencemacmini) or via SSH polling (everywhere else)HUMANIZE_GPT_PRO_HOST=<host> if you run gpt-pro-relay on a different machinenpx claudepluginhub chrisliu298/humanizeGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.