UNPKG

spec-workflow-mcp

Version:

MCP server for managing spec workflow (requirements, design, implementation)

14 lines 450 B
/** * Generate next stage document */ import { WorkflowStage } from '../shared/documentStatus.js'; export interface NextDocumentResult { generated: boolean; alreadyExists?: boolean; message: string; fileName?: string; filePath?: string; guide?: unknown; } export declare function generateNextDocument(path: string, currentStage: WorkflowStage): Promise<NextDocumentResult>; //# sourceMappingURL=generateNextDocument.d.ts.map