ワンクリックで
codex-manager
Keep a Codex worker operating from a manager Claude pane using tmaxx send/read/inspect plus a simple supervision loop.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Keep a Codex worker operating from a manager Claude pane using tmaxx send/read/inspect plus a simple supervision loop.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | codex-manager |
| description | Keep a Codex worker operating from a manager Claude pane using tmaxx send/read/inspect plus a simple supervision loop. |
This skill is for the common setup where:
tmaxx is the transport layer between themUse it when the worker already has a clear assignment and the manager's job is to keep execution moving.
Run Claude in a /loop and keep the loop dumb:
The manager is not there to re-solve the task every minute. The manager is there to keep the worker from drifting, freezing, or pretending to work.
Example pane naming:
manager pane: claude3:1.1
worker pane: codex1:1.1
Useful commands:
tmaxx pane inspect --target codex1:1.1
tmaxx pane read --target codex1:1.1 | tail -20
tmaxx chat tail --target codex1:1.1 --limit 6
tmaxx send --to codex1:1.1 --from claude3 --body "execute immediately and report results"
/loopUse /loop when:
Do not use /loop as a substitute for giving the worker a real assignment in
the first place.
The worker keeps talking about approaches, detectors, candidates, plans, or frontiers instead of doing the work.
Typical nudge:
tmaxx send --to codex1:1.1 --from claude3 --body "Stop analyzing. Execute the fix now and report results."
The worker describes the obvious next step and then asks if it should do it.
Typical nudge:
tmaxx send --to codex1:1.1 --from claude3 --body "You already know the next step. Do it and report results."
The worker is on the same error, same file, same idea for too long.
Manager response:
The worker keeps fixing one instance of a bug class at a time instead of fixing the shared cause.
Typical nudge:
tmaxx send --to codex1:1.1 --from claude3 --body "Stop fixing instances one by one. Count the whole bug class, find the common cause, and write one fix for that class."
The pane looks busy, but it is really just sitting in a background-terminal or stale waiting state.
Manager response:
The worker compacted and lost the immediate thread.
Manager response:
/loop Prompt ShapeIf you want a compact manager loop prompt for Claude, use something in this shape:
You are supervising a Codex worker in pane codex1:1.1.
Loop:
1. Run `tmaxx pane inspect --target codex1:1.1`
2. Run `tmaxx pane read --target codex1:1.1 | tail -20`
3. If needed, run `tmaxx chat tail --target codex1:1.1 --limit 6`
4. Decide whether Codex is making real progress on the assigned task
5. If Codex is drifting, stalled, permission-seeking, or analyzing instead of executing, send one short corrective message with `tmaxx send`
6. Otherwise do nothing
Keep interventions brief and operational. Do not spam. Do not take over unless Codex is clearly stuck.
That is the whole pattern. The tool stays stupid. The manager loop just keeps the worker alive and pointed at the job.