feat(tools): add barrel exports and allBuiltinTools list

This commit is contained in:
William Valentin
2026-02-05 17:40:13 -08:00
parent b00706325b
commit c96165fb2f
2 changed files with 35 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
export { shellExecTool } from './shell.js';
export { fileReadTool } from './file-read.js';
export { fileWriteTool } from './file-write.js';
export { fileEditTool } from './file-edit.js';
export { fileListTool } from './file-list.js';
export { webFetchTool } from './web-fetch.js';
import type { Tool } from '../types.js';
import { shellExecTool } from './shell.js';
import { fileReadTool } from './file-read.js';
import { fileWriteTool } from './file-write.js';
import { fileEditTool } from './file-edit.js';
import { fileListTool } from './file-list.js';
import { webFetchTool } from './web-fetch.js';
export const allBuiltinTools: Tool[] = [
shellExecTool,
fileReadTool,
fileWriteTool,
fileEditTool,
fileListTool,
webFetchTool,
];