UNPKG

@tosin2013/mcp-shrimp-task-manager

Version:

Enhanced MCP Shrimp Task Manager with comprehensive LLM integration. A task management tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. Features real GPT-4 ↔ MCP tools communication, comprehensive testing pipeline

12 lines (11 loc) 351 B
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): string;