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

10 lines 413 B
import type { ParsedCustomCommand } from '../types/index.js'; /** * Parse a markdown file with optional YAML frontmatter */ export declare function parseCommandFile(filePath: string): ParsedCustomCommand; /** * Replace template variables in command content */ export declare function substituteTemplateVariables(content: string, variables: Record<string, string>): string; //# sourceMappingURL=parser.d.ts.map