UNPKG

@tosin2013/mcp-shrimp-task-manager

Version:

Enhanced MCP Shrimp Task Manager with comprehensive LLM integration. A task management tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. Features real GPT-4 ↔ MCP tools communication, comprehensive testing pipeline

21 lines (20 loc) 503 B
/** * clearAllTasks prompt 生成器 * 負責將模板和參數組合成最終的 prompt */ /** * clearAllTasks prompt 參數介面 */ export interface ClearAllTasksPromptParams { confirm?: boolean; success?: boolean; message?: string; backupFile?: string; isEmpty?: boolean; } /** * 獲取 clearAllTasks 的完整 prompt * @param params prompt 參數 * @returns 生成的 prompt */ export declare function getClearAllTasksPrompt(params: ClearAllTasksPromptParams): string;