From b2acfd606a0d69205ea25c28b7055b63e8f86852 Mon Sep 17 00:00:00 2001 From: Tyler Yust Date: Tue, 17 Feb 2026 15:49:22 -0800 Subject: [PATCH] fix(subagent): update SUBAGENT_SPAWN_ACCEPTED_NOTE for clarity on auto-announcement behavior --- src/agents/subagent-spawn.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/agents/subagent-spawn.ts b/src/agents/subagent-spawn.ts index 79f802dfef..878440fba6 100644 --- a/src/agents/subagent-spawn.ts +++ b/src/agents/subagent-spawn.ts @@ -39,7 +39,8 @@ export type SpawnSubagentContext = { requesterAgentIdOverride?: string; }; -export const SUBAGENT_SPAWN_ACCEPTED_NOTE = "auto-announces on completion, do not poll"; +export const SUBAGENT_SPAWN_ACCEPTED_NOTE = + "auto-announces on completion, do not poll/sleep. The response will be sent back as a user message."; export type SpawnSubagentResult = { status: "accepted" | "forbidden" | "error";