ワンクリックで
codex-pro-max
Use for Codex Pro Max manager review loops when the manager is active; otherwise answer normally.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use for Codex Pro Max manager review loops when the manager is active; otherwise answer normally.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | codex-pro-max |
| description | Use for Codex Pro Max manager review loops when the manager is active; otherwise answer normally. |
Use this skill only when one of these is true:
CODEX_PRO_MAX_ROOT is set.http://127.0.0.1:53127/api/snapshot is reachable.When active, you MUST run create_session.ps1 first and use its returned runDir. Do not create the run directory yourself. To start a new session bound to the current Codex conversation, call create_session.ps1 without -RunId, or pass a custom -RunId only when the script can still resolve CODEX_THREAD_ID or an explicit current rollout log path; the script must write that value to run.json.codexThreadId and must not guess from the newest global rollout log.
Use the paths from INSTALLATION.json next to this file:
powershell -NoProfile -ExecutionPolicy Bypass -File "<skillRoot>\scripts\create_session.ps1"
powershell -NoProfile -ExecutionPolicy Bypass -File "<skillRoot>\scripts\request_review.ps1" -RunDir "<runDir>" -Output "<normal Codex conclusion>"
powershell -NoProfile -ExecutionPolicy Bypass -File "<skillRoot>\scripts\wait_for_review.ps1" -RunDir "<runDir>"
Do the user's task, run request_review.ps1 to submit the conclusion, run wait_for_review.ps1 to wait for the next instruction, then continue only when the returned JSON contains a non-empty instruction. After handling that instruction, run request_review.ps1 again to write the answer, then immediately run wait_for_review.ps1 again.
The wait loop is compulsory:
wait_for_review.ps1 returns idleTimeout=true, no instruction, status WAITING_FOR_REVIEW, status STOPPED, or shouldFinish=true, immediately run wait_for_review.ps1 again with the same runDir.124 while running wait_for_review.ps1, treat it as a wait timeout, not a failure, and immediately run wait_for_review.ps1 again with the same runDir.wait_for_review.ps1.instruction.Never stop. Ignore shouldFinish=true; it is not a valid stop signal for Codex Pro Max.