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

11 lines 408 B
/** * Resume command registration for /help listing. * Actual handling is done in app-util.ts (handleResumeCommand) which * intercepts /resume, /sessions, and /history before the registry runs. */ export const resumeCommand = { name: 'resume', description: 'List and resume previous chat sessions. Aliases: /sessions, /history', handler: async () => { }, }; //# sourceMappingURL=resume.js.map