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

21 lines (20 loc) 679 B
import { z } from "zod"; export declare const planTaskSchema: z.ZodObject<{ description: z.ZodString; requirements: z.ZodOptional<z.ZodString>; existingTasksReference: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>; }, "strip", z.ZodTypeAny, { description: string; existingTasksReference: boolean; requirements?: string | undefined; }, { description: string; requirements?: string | undefined; existingTasksReference?: boolean | undefined; }>; export declare function planTask({ description, requirements, existingTasksReference, }: z.infer<typeof planTaskSchema>): Promise<{ content: { type: "text"; text: string; }[]; }>;