UNPKG

mcp-shrimp-task-manager

Version:

Shrimp Task Manager is a task 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 develope

13 lines (12 loc) 326 B
import { z } from "zod"; export declare const initProjectRulesSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; /** * 初始化專案規範工具函數 * 提供建立規範文件的指導 */ export declare function initProjectRules(): Promise<{ content: { type: "text"; text: string; }[]; }>;