用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/PiLastDigit/TRIP-workflow --skill codex-ask命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | codex-ask |
| description | Ask Codex for a grounded second opinion on any question - advisory, not gating |
| argument-hint | <topic-label> <question> | reset <topic-label> | show <topic-label> |
Free-form second opinion from Codex CLI on any matter — architecture decisions, debugging hypotheses, research conclusions, trade-off calls — not just plans and diffs. Codex answers from inside the repository (read-only sandbox), so its opinion is grounded in the actual code, not in whatever excerpt happened to be quoted.
Advisory, not authoritative. Unlike codex-plan-review / codex-code-review, there are no verdict tags and nothing is gated on the answer: treat the response as one input to your judgment, exactly like a colleague's opinion. Agreement is weak evidence; disagreement is a strong signal that something deserves the user's attention.
State persisted per topic label under .claude/skills/codex-ask/state/ — follow-ups resume the same thread, enabling multi-round discussion. The shared scripts from codex-plan-review do all the work; always export first:
export STATE_DIR=".claude/skills/codex-ask/state"
<topic-label> — short kebab-case label for the discussion (becomes the state key), e.g. orchestrator-choice, flaky-auth-test. Auto: start if no thread, resume if one exists.<question> — the actual question, passed as trailing text. Include your own draft position when you have one ("Here is my recommendation: … Red-team it").reset <topic-label> / show <topic-label> — drop state / display last answer.Start a discussion:
bash .claude/skills/codex-plan-review/scripts/start.sh \
--prompt-file .claude/skills/codex-ask/prompts/ask.tpl \
<topic-label> "<question — include your draft position and ask for disagreement>"
Follow up in the same thread (counterpoints, new evidence):
bash .claude/skills/codex-plan-review/scripts/resume.sh \
--prompt-file .claude/skills/codex-ask/prompts/followup.tpl \
<topic-label> "<follow-up or counterpoint>"
Reset: bash .claude/skills/codex-plan-review/scripts/reset.sh <topic-label> — Show: show.sh <topic-label>
start.sh / resume.sh via the Bash tool with run_in_background: true — never as a foreground/inline command. Codex runs at xhigh effort routinely outlast the foreground command timeout; the background task notifies on completion, then read its output. reset.sh / show.sh are instant and fine in the foreground.CODEX_TIMEOUT=1800 (30 min) when invoking start.sh / resume.sh — a generous circuit breaker against hung runs (script default 0 = no timeout); fails through the normal error path with a "timed out" message on expiry.codex-plan-review/scripts/_common.sh (non-implement flows get the review-class model at xhigh by default); override per run via CODEX_MODEL / CODEX_EFFORT / CODEX_TIER.