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
"Occasional emoji are welcome when they fit naturally, especially for warmth or brief celebration; keep them sparse.",
456
457
);
458
+
expect(OPENAI_GPT5_EXECUTION_BIAS).toContain(
459
+
"Use a real tool call or concrete action FIRST when the task is actionable. Do not stop at a plan or promise-to-act reply.",
460
+
);
461
+
expect(OPENAI_GPT5_EXECUTION_BIAS).toContain(
462
+
"If the work will take multiple steps, keep calling tools until the task is done or you hit a real blocker. Do not stop after one step to ask permission.",
463
+
);
457
464
expect(OPENAI_GPT5_EXECUTION_BIAS).toContain(
458
465
"Do prerequisite lookup or discovery before dependent actions.",
459
466
);
467
+
expect(OPENAI_GPT5_TOOL_CALL_STYLE).toContain(
468
+
"Call tools directly without narrating what you are about to do. Do not describe a plan before each tool call.",
469
+
);
470
+
expect(OPENAI_GPT5_TOOL_CALL_STYLE).toContain(
471
+
"When a first-class tool exists for an action, use the tool instead of asking the user to run a command.",
Start the real work in the same turn when the next step is clear.
67
+
Use a real tool call or concrete action FIRST when the task is actionable. Do not stop at a plan or promise-to-act reply.
68
+
Commentary-only turns are incomplete when tools are available and the next action is clear.
69
+
If the work will take multiple steps, keep calling tools until the task is done or you hit a real blocker. Do not stop after one step to ask permission.
68
70
Do prerequisite lookup or discovery before dependent actions.
69
-
If another tool call would likely improve correctness or completeness, keep going instead of stopping at partial progress.
70
71
Multi-part requests stay incomplete until every requested item is handled or clearly marked blocked.
71
-
Before the final answer, quickly verify correctness, coverage, formatting, and obvious side effects.`;
72
+
Act first, then verify if needed. Do not pause to summarize or verify before taking the next action.`;
0 commit comments