@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
17 lines • 835 B
TypeScript
import type { MessageSubmissionOptions } from '../../../types/index.js';
/**
* Handles /schedule start — enters scheduler mode.
* Returns true if handled.
*/
export declare function handleScheduleStart(commandParts: string[], options: MessageSubmissionOptions): Promise<boolean>;
/**
* Handles /schedule create — creates the schedule file and prompts the AI to help write it.
* Returns true if handled.
*/
export declare function handleScheduleCreate(commandParts: string[], options: MessageSubmissionOptions): Promise<boolean>;
/**
* Handles /commands create — creates the command file and prompts the AI to help write it.
* Returns true if handled.
*/
export declare function handleCommandCreate(commandParts: string[], options: MessageSubmissionOptions): Promise<boolean>;
//# sourceMappingURL=create-handler.d.ts.map