UNPKG

llms-txt-generator

Version:

A powerful CLI tool and MCP server for generating standardized llms.txt and llms-full.txt documentation files to help AI models better understand project structures

18 lines (17 loc) 682 B
/** * Load prompt content from markdown files * @param promptName - The name of the prompt file (without extension) * @returns Promise<string> - The content of the prompt file */ export declare function loadPrompt(promptName: string): Promise<string>; /** * Check if a prompt file exists * @param promptName - The name of the prompt file (without extension) * @returns Promise<boolean> - Whether the prompt file exists */ export declare function promptExists(promptName: string): Promise<boolean>; /** * List all available prompt files * @returns Promise<string[]> - Array of prompt names (without extensions) */ export declare function listPrompts(): Promise<string[]>;