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

24 lines (23 loc) 553 B
/** * queryTask prompt 生成器 * 負責將模板和參數組合成最終的 prompt */ import { Task } from "../../types/index.js"; /** * queryTask prompt 參數介面 */ export interface QueryTaskPromptParams { query: string; isId: boolean; tasks: Task[]; totalTasks: number; page: number; pageSize: number; totalPages: number; } /** * 獲取 queryTask 的完整 prompt * @param params prompt 參數 * @returns 生成的 prompt */ export declare function getQueryTaskPrompt(params: QueryTaskPromptParams): string;