UNPKG

mcp-chain-of-thought

Version:

Chain of Thought is a 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 developer behavi

18 lines (17 loc) 448 B
/** * reflectTask prompt generator * Responsible for combining templates and parameters into the final prompt */ /** * reflectTask prompt parameter interface */ export interface ReflectTaskPromptParams { summary: string; analysis: string; } /** * Get complete reflectTask prompt * @param params prompt parameters * @returns generated prompt */ export declare function getReflectTaskPrompt(params: ReflectTaskPromptParams): string;