From a36323b7b0baf373e9017df8b4f9ec12992abec2 Mon Sep 17 00:00:00 2001 From: champly Date: Sat, 28 Mar 2026 18:14:14 +0800 Subject: [PATCH] improve cron deliver param description to clarify agent processing vs direct send --- pkg/tools/cron.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tools/cron.go b/pkg/tools/cron.go index 154ec75f0..a810142fc 100644 --- a/pkg/tools/cron.go +++ b/pkg/tools/cron.go @@ -113,7 +113,7 @@ func (t *CronTool) Parameters() map[string]any { }, "deliver": map[string]any{ "type": "boolean", - "description": "If true, send message directly to channel. If false, let agent process message (for complex tasks). Default: false", + "description": "If true, send the message text directly to the channel as-is (only for fixed static text with no processing needed). If false (default, strongly recommended), the agent processes the task and sends the result. ALWAYS use false for tasks that require fetching data, calling APIs, searching news, or generating any content.", }, }, "required": []string{"action"},