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
20 lines (19 loc) • 519 B
TypeScript
/**
* listTasks prompt generator
* Responsible for combining templates and parameters into the final prompt
*/
import { Task } from "../../types/index.js";
/**
* listTasks prompt parameter interface
*/
export interface ListTasksPromptParams {
status: string;
tasks: Record<string, Task[]>;
allTasks: Task[];
}
/**
* Get the complete listTasks prompt
* @param params prompt parameters
* @returns generated prompt
*/
export declare function getListTasksPrompt(params: ListTasksPromptParams): string;