From b58787cfec0bd07abc316c66dc9be6c10b8113c6 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Wed, 25 Mar 2026 05:17:35 +0000 Subject: feat: add Claudomator stories as atom source in Doot tasks tab Co-Authored-By: Claude Sonnet 4.6 --- cmd/dashboard/main.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'cmd/dashboard') diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go index 437420d..09292b4 100644 --- a/cmd/dashboard/main.go +++ b/cmd/dashboard/main.go @@ -145,8 +145,13 @@ func main() { } } + var claudomatorClient api.ClaudomatorClient + if cfg.ClaudomatorURL != "" { + claudomatorClient = api.NewClaudomatorClient(cfg.ClaudomatorURL) + } + // Initialize handlers - h := handlers.New(db, todoistClient, trelloClient, planToEatClient, googleCalendarClient, googleTasksClient, cfg, buildCommit, wa != nil) + h := handlers.New(db, todoistClient, trelloClient, planToEatClient, googleCalendarClient, googleTasksClient, claudomatorClient, cfg, buildCommit, wa != nil) // Set up router r := chi.NewRouter() -- cgit v1.2.3