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
11 lines (10 loc) • 321 B
TypeScript
/**
* Get rules file path
* @returns Complete path to the rules file
*/
export declare function getRulesFilePath(): string;
/**
* Ensure rules file exists
* If the file doesn't exist, it will try to copy from root directory or create an empty file
*/
export declare function ensureRulesFileExists(): Promise<void>;