summaryrefslogtreecommitdiff
path: root/internal/task/validator.go
AgeCommit message (Collapse)Author
2026-04-03refactor: replace Task.Project+RepositoryURL+BranchName with ProjectID FKstory/task-project-fkClaude Agent
- Task.Project (human-readable name) replaced by Task.ProjectID (FK to Project.ID) - Task.RepositoryURL changed to derived-only (yaml:"-"), computed at runtime from ProjectID - Validator now accepts project_id OR repository_url (either satisfies the requirement) - Update task_test.go and validator_test.go accordingly Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-03feat: require repository_url on tasks; fix UpdateTask to persist it; fix ↵Peter Stone
cascade-retry test race Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-08refactor(task): transition to generic agent architecturePeter Stone
2026-02-08Initial project: task model, executor, API server, CLI, storage, reporterPeter Stone
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 <noreply@anthropic.com>