This commit is contained in:
2026-05-17 12:43:53 -07:00
commit 7c8def0aaa
7507 changed files with 1419399 additions and 0 deletions

7
dist/prompts/loader.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
export declare function registerPrompt(id: string, template: string): void;
/**
* Resolve a prompt template by ID, substituting {{variable}} placeholders.
* Missing variables are replaced with an empty string.
*/
export declare function resolvePrompt(id: string, variables?: Record<string, string>): string;
export declare function hasPrompt(id: string): boolean;