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
21 lines (20 loc) • 554 B
TypeScript
/**
* getTaskDetail prompt generator
* Responsible for combining templates and parameters into the final prompt
*/
import { Task } from "../../types/index.js";
/**
* getTaskDetail prompt parameter interface
*/
export interface GetTaskDetailPromptParams {
taskId: string;
error?: string;
task?: Task;
relatedFilesSummary?: string;
}
/**
* Get the complete getTaskDetail prompt
* @param params prompt parameters
* @returns generated prompt
*/
export declare function getTaskDetailPrompt(params: GetTaskDetailPromptParams): string;