From 748264e44db22263bc1898a618eb6646b837466c Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 10 Apr 2026 13:31:14 +0200 Subject: [PATCH] cli: add missing agent action parameters to argument extraction - Add agent, message, to, and content parameters to handle_agent_action kwargs extraction - Fixes agent communication commands that require these parameters (send, receive, broadcast) --- cli/unified_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/unified_cli.py b/cli/unified_cli.py index e06f8b26..02484180 100644 --- a/cli/unified_cli.py +++ b/cli/unified_cli.py @@ -637,7 +637,7 @@ def run_cli(argv, core): def handle_agent_action(args): kwargs = {} - for name in ("name", "description", "verification", "max_execution_time", "max_cost_budget", "input_data", "wallet", "priority", "execution_id", "status"): + for name in ("name", "description", "verification", "max_execution_time", "max_cost_budget", "input_data", "wallet", "priority", "execution_id", "status", "agent", "message", "to", "content"): value = getattr(args, name, None) if value not in (None, "", False): kwargs[name] = value