UNPKG

@jasondark/proompt

Version:

CLI tool for running AI prompts with structure and repeatability

14 lines 460 B
import { CommandModule } from '../core/types'; /** * Automatically discover and load all command modules */ export declare const discoverCommandModules: () => Map<string, CommandModule>; /** * Get all available command modules */ export declare const getCommandModules: () => CommandModule[]; /** * Get a specific command module by name */ export declare const getCommandModule: (name: string) => CommandModule | null; //# sourceMappingURL=index.d.ts.map