From 2e2b2187b957e9af78797a67ec5c6874615fae02 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sun, 8 Feb 2026 21:35:45 -1000 Subject: Initial project: task model, executor, API server, CLI, storage, reporter Claudomator automation toolkit for Claude Code with: - Task model with YAML parsing, validation, state machine (49 tests, 0 races) - SQLite storage for tasks and executions - Executor pool with bounded concurrency, timeout, cancellation - REST API + WebSocket for mobile PWA integration - Webhook/multi-notifier system - CLI: init, run, serve, list, status commands - Console, JSON, HTML reporters with cost tracking Co-Authored-By: Claude Opus 4.6 --- cmd/claudomator/main.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cmd/claudomator/main.go (limited to 'cmd') diff --git a/cmd/claudomator/main.go b/cmd/claudomator/main.go new file mode 100644 index 0000000..e6cba37 --- /dev/null +++ b/cmd/claudomator/main.go @@ -0,0 +1,15 @@ +package main + +import ( + "fmt" + "os" + + "github.com/claudomator/claudomator/internal/cli" +) + +func main() { + if err := cli.Execute(); err != nil { + fmt.Fprintf(os.Stderr, "Error: %v\n", err) + os.Exit(1) + } +} -- cgit v1.2.3