diff options
| author | matt korwel <[email protected]> | 2025-06-07 12:07:58 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-07 12:07:58 -0700 |
| commit | f1a4e5d4d3f7e4fdcee193622b3e7aebf661a48b (patch) | |
| tree | 3bd51fcadd75451fbb7b14d558e361122389aac6 /packages/core/src/config/config.ts | |
| parent | 28ff62e7b1b2191c5f5193314523f848a0f3dea5 (diff) | |
Creating Node AST Tool. (#756)
Diffstat (limited to 'packages/core/src/config/config.ts')
| -rw-r--r-- | packages/core/src/config/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index c25bc8fc..00b3e35d 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -10,6 +10,7 @@ import * as path from 'node:path'; import process from 'node:process'; import * as os from 'node:os'; import { ToolRegistry } from '../tools/tool-registry.js'; +import { CodeParserTool } from '../tools/code_parser.js'; // Added CodeParserTool import { LSTool } from '../tools/ls.js'; import { ReadFileTool } from '../tools/read-file.js'; import { GrepTool } from '../tools/grep.js'; @@ -355,6 +356,7 @@ export function createToolRegistry(config: Config): Promise<ToolRegistry> { registerCoreTool(ShellTool, config); registerCoreTool(MemoryTool); registerCoreTool(WebSearchTool, config); + registerCoreTool(CodeParserTool, targetDir, config); // Added CodeParserTool return (async () => { await registry.discoverTools(); return registry; |
