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

23 lines (22 loc) 605 B
/** * planTask prompt generator * Responsible for combining templates and parameters into the final prompt */ import { Task } from "../../types/index.js"; /** * planTask prompt parameter interface */ export interface PlanTaskPromptParams { description: string; requirements?: string; existingTasksReference?: boolean; completedTasks?: Task[]; pendingTasks?: Task[]; memoryDir: string; } /** * Get the complete planTask prompt * @param params prompt parameters * @returns generated prompt */ export declare function getPlanTaskPrompt(params: PlanTaskPromptParams): string;