UNPKG

spec-workflow-mcp

Version:

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

18 lines 730 B
/** * Document status management related functions */ export interface DocumentStatus { exists: boolean; } export interface WorkflowStatus { requirements: DocumentStatus; design: DocumentStatus; tasks: DocumentStatus; } export type WorkflowStage = 'requirements' | 'design' | 'tasks' | 'completed'; export declare function getWorkflowStatus(path: string): WorkflowStatus; export declare function getCurrentStage(status: WorkflowStatus, path?: string): WorkflowStage; export declare function getNextStage(stage: WorkflowStage): WorkflowStage; export declare function getStageName(stage: string): string; export declare function getStageFileName(stage: string): string; //# sourceMappingURL=documentStatus.d.ts.map