/** * Specification Handler * * Handles specification creation and clarification phases * - spec: Create initial feature specification * - clarify: Resolve specification ambiguities */ import type { MCPToolResult } from "../../types/mcp-types.js"; export declare class SpecHandler { private projectRoot; private templateGenerator; private workflowService; private memoryService; constructor(projectRoot: string); /** * Ensure workflow ID exists (use provided or get latest) */ private ensureWorkflowId; /** * Generate checklist instruction */ private generateChecklistInstruction; /** * Handle spec - Create feature specification */ handleSpec(args: { description: string; }): Promise; /** * Handle clarify - Resolve specification ambiguities */ handleClarify(args: { workflowId?: string; }): Promise; } //# sourceMappingURL=spec-handler.d.ts.map