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
12 lines (11 loc) • 351 B
TypeScript
export interface ProcessThoughtPromptParams {
thought: string;
thoughtNumber: number;
totalThoughts: number;
nextThoughtNeeded: boolean;
stage: string;
tags: string[];
axioms_used: string[];
assumptions_challenged: string[];
}
export declare function getProcessThoughtPrompt(param: ProcessThoughtPromptParams): string;