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) }