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

25 lines (24 loc) 634 B
/** * deleteTask prompt generator * Responsible for combining templates and parameters into the final prompt */ import { Task } from "../../types/index.js"; /** * deleteTask prompt parameter interface */ export interface DeleteTaskPromptParams { taskId: string; task?: Task; isTaskCompleted?: boolean; isSuccess?: boolean; success?: boolean; message?: string; error?: string; taskNotFound?: boolean; } /** * Get the complete deleteTask prompt * @param params prompt parameters * @returns generated prompt */ export declare function getDeleteTaskPrompt(params: DeleteTaskPromptParams): string;