chore: calm down (#26367)

Prompt update to address feedback
This commit is contained in:
jif
2026-06-04 12:46:02 +02:00
committed by GitHub
Unverified
parent ad2012d645
commit 16d02ec77c
+2
View File
@@ -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.