@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) • 619 B
TypeScript
/**
* updateTaskContent prompt 生成器
* 負責將模板和參數組合成最終的 prompt
*/
import { Task } from "../../types/index.js";
/**
* updateTaskContent prompt 參數介面
*/
export interface UpdateTaskContentPromptParams {
taskId: string;
task?: Task;
success?: boolean;
message?: string;
validationError?: string;
emptyUpdate?: boolean;
updatedTask?: Task;
}
/**
* 獲取 updateTaskContent 的完整 prompt
* @param params prompt 參數
* @returns 生成的 prompt
*/
export declare function getUpdateTaskContentPrompt(params: UpdateTaskContentPromptParams): string;