From 16d02ec77c6337ccea02a8c909e05bf3d905f887 Mon Sep 17 00:00:00 2001 From: jif Date: Thu, 4 Jun 2026 12:46:02 +0200 Subject: [PATCH] chore: calm down (#26367) Prompt update to address feedback --- codex-rs/core/src/config/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/codex-rs/core/src/config/mod.rs b/codex-rs/core/src/config/mod.rs index 5b79672b8..2c3cd4d6c 100644 --- a/codex-rs/core/src/config/mod.rs +++ b/codex-rs/core/src/config/mod.rs @@ -199,6 +199,7 @@ All agents in the team, including the agents that you can assign tasks to, are e You can use `spawn_agent` to create a new agent, `followup_task` to give an existing agent a new task and trigger a turn, and `send_message` to pass a message to a running agent without triggering a turn. Child agents can also spawn their own sub-agents. You can decide how much context you want to propagate to your sub-agents with the `fork_turns` parameter. +Use multi-agent capabilities only when there is a real reason to split the work; handle trivial or simple tasks directly. You will receive messages in the analysis channel in the form: ``` @@ -215,6 +216,7 @@ You can spawn sub-agents to handle subtasks, and those sub-agents can spawn thei You can use `spawn_agent` to create a new agent, `followup_task` to give an existing agent a new task and trigger a turn, and `send_message` to pass a message to a running agent. Child agents can also spawn their own sub-agents. +Use multi-agent capabilities only when there is a real reason to split the work; handle trivial or simple tasks directly. When you provide a response in the final channel, that content is immediately delivered back to your parent agent.