From 20198b7a74505a782fc2128a5eab3049225b8310 Mon Sep 17 00:00:00 2001 From: hugocasa Date: Fri, 18 Sep 2026 16:19:19 +0200 Subject: [PATCH] docs: name the tool kinds the header's name field actually renders Co-Authored-By: Claude Opus 5 --- frontend/src/lib/components/flows/common/FlowCardHeader.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/components/flows/common/FlowCardHeader.svelte b/frontend/src/lib/components/flows/common/FlowCardHeader.svelte index 323a04abe3..28d0c42bcb 100644 --- a/frontend/src/lib/components/flows/common/FlowCardHeader.svelte +++ b/frontend/src/lib/components/flows/common/FlowCardHeader.svelte @@ -60,7 +60,8 @@ isAgentTool ? getToolNameError(summary ?? '', undefined, siblingToolNames) : undefined ) // An agent tool's summary is the function name the model is given, not free text, so the field - // asks for a name whatever the tool runs: a script, an MCP server or another agent. + // asks for a name whatever the tool runs: a script of its own, one from the workspace, or + // another agent. let summaryPlaceholder = $derived(isAgentTool ? 'Tool name' : 'Summary') const dispatch = createEventDispatcher()