UNPKG

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

13 lines (12 loc) 352 B
import { z } from "zod"; export declare const initProjectRulesSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; /** * Initialize project rules tool function * Provides guidance for creating specification documents */ export declare function initProjectRules(): Promise<{ content: { type: "text"; text: string; }[]; }>;