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

13 lines 419 B
/** * Git Tools * * Provides git operations for the coding agent. * Tools are conditionally registered based on git/gh availability. */ import type { NanocoderToolExport } from '../../types/core.js'; /** * Get all available git tools based on system capabilities. * Returns empty array if git is not installed. */ export declare function getGitTools(): NanocoderToolExport[]; //# sourceMappingURL=index.d.ts.map