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 --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a8b99ff --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +.PHONY: build test lint clean run + +BINARY := claudomator +BUILD_DIR := bin +GO := go + +build: + $(GO) build -o $(BUILD_DIR)/$(BINARY) ./cmd/claudomator + +test: + $(GO) test ./... -v -race -count=1 + +test-cover: + $(GO) test ./... -coverprofile=coverage.out -race + $(GO) tool cover -html=coverage.out -o coverage.html + +lint: + golangci-lint run ./... + +clean: + rm -rf $(BUILD_DIR) coverage.out coverage.html + +run: build + ./$(BUILD_DIR)/$(BINARY) + +tidy: + $(GO) mod tidy -- cgit v1.2.3