From c2b6f099c69451cb691c075a62fe53a742c0cdf1 Mon Sep 17 00:00:00 2001 From: Tyler Yust Date: Wed, 18 Feb 2026 16:57:13 -0800 Subject: [PATCH] fix(agents): update SUBAGENT_SPAWN_ACCEPTED_NOTE to clarify response type --- src/agents/subagent-spawn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/subagent-spawn.ts b/src/agents/subagent-spawn.ts index 00d9beaf88e..f14e9e50efc 100644 --- a/src/agents/subagent-spawn.ts +++ b/src/agents/subagent-spawn.ts @@ -41,7 +41,7 @@ export type SpawnSubagentContext = { }; export const SUBAGENT_SPAWN_ACCEPTED_NOTE = - "auto-announces on completion, do not poll/sleep. The response will be sent back as an agent message."; + "auto-announces on completion, do not poll/sleep. The response will be sent back as an user message."; export type SpawnSubagentResult = { status: "accepted" | "forbidden" | "error";