Codex: autonomous Luna subagent, per-task reasoning effort, and completion callbacks A developer has published a configuration pattern for OpenAI's Codex that adds an autonomous "Luna" subagent, per-task reasoning effort selection, and completion callbacks. The setup, defined in a Codex AGENTS.md section and a companion luna_worker.toml file, lets primary agents delegate bounded, self-contained jobs to Luna with reasoning_effort chosen per spawn from low to max. It also specifies callback delivery via send_message_to_thread with a job_id and the parent's runtime CODEX_THREAD_ID so an idle parent can be woken on completion. Add the following section to ~/.codex/AGENTS.md and save the companion luna worker.toml as ~/.codex/agents/luna worker.toml . - Primary agents: proactively delegate bounded, self-contained jobs to luna worker when Luna can complete and verify them independently and delegation saves work or supervision. Suitable jobs include authorized releases through established procedures, focused web research, long-running scripts, batch processing, and straightforward implementation. Handle small operations directly by default, unless there are long waits, useful independent parallel work, or an explicit user request to delegate. - Delegate preparation, execution, and verification as one complete job. Build a concise brief from available context and file references; avoid extra parent tool calls solely to prepare the delegation when that information is sufficient. Leave input inspection, artifact preparation, and routine validation to Luna, except where the parent needs them to establish scope or authorization. - Choose reasoning effort explicitly at each spawn: low for known procedures and script supervision, medium for focused research and simple changes, and high or max for harder reasoning still suitable for Luna. Use agent type="luna worker" ; its model is fixed to Luna while effort is chosen per assignment. - Prefer fork turns="none" with a sufficient brief: objective, working directory, relevant context/files, authorized actions, owned files if editing, and completion checks. Children must preserve concurrent work and must not delegate further. - For unattended delivery in the Codex app, first confirm send message to thread is available. Include a unique job id , delivery="callback" , and reply thread id obtained from the primary task's actual runtime CODEX THREAD ID . Never guess this ID or substitute a child ID. For ordinary collected results, use delivery="return" and collect the final answer in the active turn. - After dispatching a callback job, continue useful independent work or end the turn with a brief handoff and pending status. Do not poll or stay in a waiting loop. Luna must send one explicit completion, failure, or blocking-decision callback to the supplied task; native child completion alone is insufficient to wake an idle parent. - On callback, reconcile the result with the original job and current state, verify the supplied evidence as needed, and report the outcome without repeating valid checks. Close finished children with interrupt agent . Do not turn completion messages into new delegation loops.