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
24 lines (23 loc) • 600 B
TypeScript
/**
* listMemoryFiles prompt generator
* Responsible for combining templates and parameters into the final prompt
*/
/**
* listMemoryFiles prompt parameter interface
*/
export interface ListMemoryFilesPromptParams {
success: boolean;
message: string;
files?: Array<{
name: string;
createdAt: Date;
taskCount: number;
size: number;
}>;
}
/**
* Get the complete listMemoryFiles prompt
* @param params prompt parameters
* @returns generated prompt
*/
export declare function getListMemoryFilesPrompt(params: ListMemoryFilesPromptParams): string;