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) • 472 B
TypeScript
/**
* verifyTask prompt generator
* Responsible for combining templates and parameters into the final prompt
*/
import { Task } from "../../types/index.js";
/**
* verifyTask prompt parameter interface
*/
export interface VerifyTaskPromptParams {
task: Task;
}
/**
* Get the complete prompt for verifyTask
* @param params prompt parameters
* @returns the generated prompt
*/
export declare function getVerifyTaskPrompt(params: VerifyTaskPromptParams): string;