* Build context for a task * * Creates comprehensive context by: * 1. Running FTS search to find entry points * 2. Expanding the graph around entry points * 3. Extracting code blocks for key nodes * 4. Formatting output for Claude * * @param input - Task description (string o
(
input: TaskInput,
options?: BuildContextOptions
)
| 1201 | * @returns TaskContext object or formatted string (markdown/JSON) |
| 1202 | */ |
| 1203 | async buildContext( |
| 1204 | input: TaskInput, |
| 1205 | options?: BuildContextOptions |
| 1206 | ): Promise<TaskContext | string> { |
| 1207 | return this.contextBuilder.buildContext(input, options); |
| 1208 | } |
| 1209 | |
| 1210 | // =========================================================================== |
| 1211 | // Database Management |
no outgoing calls
no test coverage detected