@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) • 499 B
TypeScript
/**
* researchMode prompt 生成器
* 負責將模板和參數組合成最終的 prompt
*/
/**
* researchMode prompt 參數介面
*/
export interface ResearchModePromptParams {
topic: string;
previousState: string;
currentState: string;
nextSteps: string;
memoryDir: string;
}
/**
* 獲取 researchMode 的完整 prompt
* @param params prompt 參數
* @returns 生成的 prompt
*/
export declare function getResearchModePrompt(params: ResearchModePromptParams): string;