From f06f78fa95443b46fea0571aeadc79d8f83de20b Mon Sep 17 00:00:00 2001 From: 0x5487 Date: Sun, 1 Mar 2026 01:14:29 +0800 Subject: [PATCH] feat: Implement a unified channel and provider management system with migration support and TUI integration. --- cmd/picoclaw/internal/gateway/helpers.go | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/cmd/picoclaw/internal/gateway/helpers.go b/cmd/picoclaw/internal/gateway/helpers.go index 33e626ec7..63efeeb32 100644 --- a/cmd/picoclaw/internal/gateway/helpers.go +++ b/cmd/picoclaw/internal/gateway/helpers.go @@ -224,7 +224,16 @@ func setupCronTool( cronService := cron.NewCronService(cronStorePath, nil) // Create and register CronTool - cronTool, err := tools.NewCronTool(cronService, agentLoop, msgBus, workspace, restrict, execTimeout, cfg, agentLoop.GetDefaultSandboxManager()) + cronTool, err := tools.NewCronTool( + cronService, + agentLoop, + msgBus, + workspace, + restrict, + execTimeout, + cfg, + agentLoop.GetDefaultSandboxManager(), + ) if err != nil { log.Fatalf("Critical error during CronTool initialization: %v", err) }