UNPKG

spec-coding-mcp

Version:

MCP server for AI-powered IDE to follow spec-driven development

23 lines 741 B
export interface WorkflowStep { step_number: number; name: string; description: string; tool: string; deliverable: string; } export interface WorkflowOverview { total_steps: number; current_step: string; current_step_number: number; steps: WorkflowStep[]; } export declare const STEP_NAMES: { readonly GOAL_CONFIRMATION: "Goal Confirmation"; readonly REQUIREMENTS: "Requirements Gathering"; readonly DESIGN: "Design Documentation"; readonly TASKS: "Task Planning"; readonly EXECUTION: "Task Execution"; }; export declare const WORKFLOW_STEPS: WorkflowStep[]; export declare function getWorkflowOverview(currentStepName: string): WorkflowOverview; //# sourceMappingURL=workflow.d.ts.map