You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dist/index.js
+99-29Lines changed: 99 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -26470,6 +26470,7 @@ var usageGuide = [
26470
26470
"- Keep sandbox read-only unless the user explicitly asks for a different sandbox.",
26471
26471
"- If the user explicitly asks for non-sandbox/full local capabilities, set full_access true. This maps to Codex's --dangerously-bypass-approvals-and-sandbox flag and allows DNS/network plus unrestricted file and git writes.",
26472
26472
"- Approvals are non-interactive; do not expect Codex to ask permission.",
26473
+
`- Foreground codex_task calls are also capped to ${defaultBlockingWaitTimeoutMs}ms by default before they hand back a live session_id. If completed is false, the Codex task is still running; use codex_followup mode wait, steer, or cancel.`,
26473
26474
'- If codex_followup mode wait returns completed false with timeoutReason "wait_timeout", the session is still running unless its status says otherwise.',
26474
26475
`- Blocking wait tools are capped to ${defaultBlockingWaitTimeoutMs}ms by default so Claude stays responsive. If a wait returns completed false, call codex_followup mode wait or codex_wait_any again, or read codex://sessions/{session_id}.`,
26475
26476
"- Use codex_wait_any after launching several background Codex tasks to harvest whichever one finishes first without busy-polling.",
@@ -27297,6 +27298,28 @@ function codexLiveProgressMessage(sessionId, fallback) {
"- Keep sandbox read-only unless the user explicitly asks for a different sandbox.",
93
93
"- If the user explicitly asks for non-sandbox/full local capabilities, set full_access true. This maps to Codex's --dangerously-bypass-approvals-and-sandbox flag and allows DNS/network plus unrestricted file and git writes.",
94
94
"- Approvals are non-interactive; do not expect Codex to ask permission.",
95
+
`- Foreground codex_task calls are also capped to ${defaultBlockingWaitTimeoutMs}ms by default before they hand back a live session_id. If completed is false, the Codex task is still running; use codex_followup mode wait, steer, or cancel.`,
95
96
"- If codex_followup mode wait returns completed false with timeoutReason \"wait_timeout\", the session is still running unless its status says otherwise.",
96
97
`- Blocking wait tools are capped to ${defaultBlockingWaitTimeoutMs}ms by default so Claude stays responsive. If a wait returns completed false, call codex_followup mode wait or codex_wait_any again, or read codex://sessions/{session_id}.`,
97
98
"- Use codex_wait_any after launching several background Codex tasks to harvest whichever one finishes first without busy-polling.",
0 commit comments