/** * prompts - 提示词库管理命令 * 提供预置提示词模板和用户自定义提示词,支持搜索、分类、CRUD、复制 */ export interface PromptsOptions { web?: boolean; output?: string; } export interface PromptTemplate { id: string; name: string; category: string; icon: string; description: string; prompt: string; command?: string; skill?: string; env?: 'cli' | 'both' | 'ai'; tags?: string[]; examples?: string[]; params: PromptParam[]; builtin: boolean; sort: number; createdAt?: string; updatedAt?: string; } export interface PromptParam { key: string; placeholder: string; required: boolean; /** CLI flag(如 --task / -I),用于「复制 Skill」生成 flag 风格参数;为空表示位置参数 */ flag?: string; } export declare function promptsCommand(options: PromptsOptions): Promise; //# sourceMappingURL=prompts.d.ts.map