// Package task defines the TASK record that flows through the conductor: // intake produces them, the loop executes them, writeback reports on them. package task // Task is one unit of released work. type Task struct { ID string `json:"id"` Subject string `json:"subject"` Prompt string `json:"prompt"` Class string `json:"class"` Source string `json:"source"` // "redmine" | "demo" }