MCPcopy
hub / github.com/colbymchenry/codegraph / buildContext

Method buildContext

src/index.ts:1203–1208  ·  view source on GitHub ↗

* 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
  )

Source from the content-addressed store, hash-verified

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

Callers 3

context.test.tsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected