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
16 lines (15 loc) • 366 B
TypeScript
import { z } from "zod";
export declare const deleteTaskSchema: z.ZodObject<{
taskId: z.ZodString;
}, "strip", z.ZodTypeAny, {
taskId: string;
}, {
taskId: string;
}>;
export declare function deleteTask({ taskId }: z.infer<typeof deleteTaskSchema>): Promise<{
content: {
type: "text";
text: string;
}[];
isError: boolean;
}>;