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
24 lines (23 loc) • 672 B
TypeScript
import { z } from "zod";
export declare const researchModeSchema: z.ZodObject<{
topic: z.ZodString;
previousState: z.ZodDefault<z.ZodOptional<z.ZodString>>;
currentState: z.ZodString;
nextSteps: z.ZodString;
}, "strip", z.ZodTypeAny, {
previousState: string;
topic: string;
currentState: string;
nextSteps: string;
}, {
topic: string;
currentState: string;
nextSteps: string;
previousState?: string | undefined;
}>;
export declare function researchMode({ topic, previousState, currentState, nextSteps, }: z.infer<typeof researchModeSchema>): Promise<{
content: {
type: "text";
text: string;
}[];
}>;