summaryrefslogtreecommitdiff
path: root/internal/task/task.go
diff options
context:
space:
mode:
authorClaudomator Agent <agent@claudomator>2026-03-16 20:01:13 +0000
committerClaudomator Agent <agent@claudomator>2026-03-16 20:01:13 +0000
commit054ec8b653b175917ef8bea45d55025e6775f187 (patch)
treeff4f55c3b255754ff8edfb02cab8a7238d02a539 /internal/task/task.go
parentc0519a1b117c50a9c3c6394bc2948398ce378a92 (diff)
feat: add Project field to Task struct and YAML parsing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/task/task.go')
-rw-r--r--internal/task/task.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/task/task.go b/internal/task/task.go
index b3660d3..3a04716 100644
--- a/internal/task/task.go
+++ b/internal/task/task.go
@@ -74,6 +74,7 @@ type Task struct {
ParentTaskID string `yaml:"parent_task_id" json:"parent_task_id"`
Name string `yaml:"name" json:"name"`
Description string `yaml:"description" json:"description"`
+ Project string `yaml:"project" json:"project"`
Agent AgentConfig `yaml:"agent" json:"agent"`
Timeout Duration `yaml:"timeout" json:"timeout"`
Retry RetryConfig `yaml:"retry" json:"retry"`