package intake import ( "git.knownelement.com/reachableceo/MOPAC/harness/internal/config" "git.knownelement.com/reachableceo/MOPAC/harness/internal/task" ) // DemoTask builds the MVP demo issue from the [demo] config section: the // smoke path that exercises the whole loop (intake -> turn -> REPORT) without // needing a reachable Redmine. func DemoTask(d config.DemoConfig) task.Task { return task.Task{ ID: d.ID, Subject: d.Subject, Prompt: d.Prompt, Class: d.Class, Source: "demo", } }