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
12 lines (11 loc) • 360 B
TypeScript
export interface ProcessThoughtPromptParams {
thought: string;
thoughtNumber: number;
totalThoughts: number;
nextThoughtNeeded: boolean;
stage: string;
tags: string[];
axioms_used: string[];
assumptions_challenged: string[];
}
export declare function getProcessThoughtPrompt(param: ProcessThoughtPromptParams): Promise<string>;