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

18 lines (17 loc) 433 B
import { z } from "zod"; export declare const reflectTaskSchema: z.ZodObject<{ summary: z.ZodString; analysis: z.ZodString; }, "strip", z.ZodTypeAny, { summary: string; analysis: string; }, { summary: string; analysis: string; }>; export declare function reflectTask({ summary, analysis, }: z.infer<typeof reflectTaskSchema>): Promise<{ content: { type: "text"; text: string; }[]; }>;