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
28 lines (27 loc) • 612 B
TypeScript
import { z } from "zod";
export declare const verifyTaskSchema: z.ZodObject<{
taskId: z.ZodString;
summary: z.ZodString;
score: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
summary: string;
score: number;
taskId: string;
}, {
summary: string;
score: number;
taskId: string;
}>;
export declare function verifyTask({ taskId, summary, score, }: z.infer<typeof verifyTaskSchema>): Promise<{
content: {
type: "text";
text: string;
}[];
isError: boolean;
} | {
content: {
type: "text";
text: string;
}[];
isError?: undefined;
}>;