mcp-shrimp-task-manager
Version:
Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like develope
21 lines (20 loc) • 508 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): Promise<string>;