MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / buildContext

Method buildContext

src/index.ts:1784–1789  ·  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

1782 * @returns TaskContext object or formatted string (markdown/JSON)
1783 */
1784 async buildContext(
1785 input: TaskInput,
1786 options?: BuildContextOptions
1787 ): Promise<TaskContext | string> {
1788 return this.contextBuilder.buildContext(input, options);
1789 }
1790
1791 // ===========================================================================
1792 // Database Management

Callers 3

context.test.tsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected