UNPKG

coding-agent

Version:

An AI coding agent using @agenite framework

9 lines 294 B
import { Tool } from '@agenite/tool'; interface FileSystemInput { operation: 'read' | 'write' | 'list' | 'exists' | 'mkdir'; path: string; content?: string; } export declare function createFileSystemTool(): Tool<FileSystemInput>; export {}; //# sourceMappingURL=file-system.d.ts.map