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

22 lines (21 loc) 475 B
import { z } from "zod"; export declare const getTaskDetailSchema: z.ZodObject<{ taskId: z.ZodString; }, "strip", z.ZodTypeAny, { taskId: string; }, { taskId: string; }>; export declare function getTaskDetail({ taskId, }: z.infer<typeof getTaskDetailSchema>): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; }>;