From d3083ea168786424b78e87220035ae1db08570ca Mon Sep 17 00:00:00 2001 From: hugocasa Date: Fri, 18 Sep 2026 16:28:03 +0200 Subject: [PATCH] docs: state the tool-name rule without listing the kinds it covers Co-Authored-By: Claude Opus 5 --- .../src/lib/components/flows/common/FlowCardHeader.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/flows/common/FlowCardHeader.svelte b/frontend/src/lib/components/flows/common/FlowCardHeader.svelte index 28d0c42bcb..900d57f577 100644 --- a/frontend/src/lib/components/flows/common/FlowCardHeader.svelte +++ b/frontend/src/lib/components/flows/common/FlowCardHeader.svelte @@ -60,8 +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 of its own, one from the workspace, or - // another agent. + // asks for a name instead. That holds for every kind a tool can be, which is why the input + // below is one shared snippet rather than one per branch. let summaryPlaceholder = $derived(isAgentTool ? 'Tool name' : 'Summary') const dispatch = createEventDispatcher()