| 136 | * layer implements `dryRunMerge` + `commit`. |
| 137 | */ |
| 138 | export interface OrchestrationEngine { |
| 139 | /** Build the task DAG from a user goal + the current codebase graph. */ |
| 140 | decompose(goal: string, signal?: AbortSignal): Promise<TaskGraph>; |
| 141 | /** Run the whole graph to completion (or terminal failure). */ |
| 142 | execute(graph: TaskGraph, signal?: AbortSignal): Promise<ExecutionReport>; |
| 143 | } |
| 144 | |
| 145 | export interface TaskGraph { |
| 146 | nodes: Map<TaskId, TaskNode>; |
no outgoing calls
no test coverage detected