UNPKG

spec-workflow-mcp

Version:

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

24 lines 984 B
/** * Confirmation status management */ export interface ConfirmationStatus { requirements: boolean; design: boolean; tasks: boolean; } export interface SkipStatus { requirements: boolean; design: boolean; tasks: boolean; } export interface WorkflowConfirmations { confirmed: ConfirmationStatus; skipped: SkipStatus; } export declare function getWorkflowConfirmations(path: string): WorkflowConfirmations; export declare function getConfirmationStatus(path: string): ConfirmationStatus; export declare function updateStageConfirmation(path: string, stage: keyof ConfirmationStatus, confirmed: boolean): void; export declare function updateStageSkipped(path: string, stage: keyof SkipStatus, skipped: boolean): void; export declare function isStageConfirmed(path: string, stage: keyof ConfirmationStatus): boolean; export declare function isStageSkipped(path: string, stage: keyof SkipStatus): boolean; //# sourceMappingURL=confirmationStatus.d.ts.map