UNPKG

@nanocollective/nanocoder

Version:

A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter

8 lines 354 B
import { copyFileTool } from './copy-file.js'; import { createDirectoryTool } from './create-directory.js'; import { deleteFileTool } from './delete-file.js'; import { moveFileTool } from './move-file.js'; export function getFileOpTools() { return [deleteFileTool, moveFileTool, createDirectoryTool, copyFileTool]; } //# sourceMappingURL=index.js.map