* 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
)
| 1783 | * @returns TaskContext object or formatted string (markdown/JSON) |
| 1784 | */ |
| 1785 | async buildContext( |
| 1786 | input: TaskInput, |
| 1787 | options?: BuildContextOptions |
| 1788 | ): Promise<TaskContext | string> { |
| 1789 | return this.contextBuilder.buildContext(input, options); |
| 1790 | } |
| 1791 | |
| 1792 | // =========================================================================== |
| 1793 | // Database Management |
no outgoing calls
no test coverage detected