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

12 lines 367 B
import type { CustomCommand } from '../types/index.js'; export declare class CustomCommandExecutor { /** * Execute a custom command with given arguments */ execute(command: CustomCommand, args: string[]): string; /** * Format command help text */ formatHelp(command: CustomCommand): string; } //# sourceMappingURL=executor.d.ts.map