@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
16 lines (15 loc) • 496 B
TypeScript
/**
* Implementation of the create_spec command for the Idea Honing Tool
*
* This file contains the main command execution logic for creating structured
* specification documents from raw ideas, with deep codebase analysis and
* project rule integration.
*/
import { z } from "zod";
import { createSpecSchema } from "./index.js";
export declare function createSpec(params: z.infer<typeof createSpecSchema>): Promise<{
content: {
type: "text";
text: string;
}[];
}>;