From b41fbcf9bc1742e33e7feca958da2277610defcb Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Fri, 7 Aug 2026 03:39:01 +0000 Subject: [PATCH] docs(core): clarify subagent session input --- packages/core/src/tool/plugin/subagent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/tool/plugin/subagent.ts b/packages/core/src/tool/plugin/subagent.ts index 699552335b6..66fb67e4cb2 100644 --- a/packages/core/src/tool/plugin/subagent.ts +++ b/packages/core/src/tool/plugin/subagent.ts @@ -25,7 +25,7 @@ export const Input = Schema.Struct({ prompt: Schema.String.annotate({ description: "The task for the subagent to perform" }), sessionID: Schema.optionalKey(SessionSchema.ID).annotate({ description: - "This should only be set if you mean to resume a previous subagent session (you can pass a prior sessionID and the subagent will continue the same session as before instead of creating a fresh one)", + "Continue a specific previous subagent conversation by passing its sessionID. Calls without a sessionID start a new conversation.", }), background: Schema.optionalKey(Schema.Boolean).annotate({ description: