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
16 lines (15 loc) • 459 B
TypeScript
/**
* initProjectRules prompt generator
* Responsible for combining templates and parameters into the final prompt
*/
/**
* initProjectRules prompt parameter interface
*/
export interface InitProjectRulesPromptParams {
}
/**
* Get the complete prompt for initProjectRules
* @param params prompt parameters (optional)
* @returns the generated prompt
*/
export declare function getInitProjectRulesPrompt(params?: InitProjectRulesPromptParams): string;