/** * Handler Utilities * * Shared utility methods for all handlers */ import { WorkflowService } from "../../services/workflow-service.js"; export declare class HandlerUtils { /** * Ensure workflow ID exists (use provided or get latest) * @throws Error if no workflow found */ static ensureWorkflowId(workflowService: WorkflowService, providedId?: string): Promise; /** * Generate checklist instruction block for AI to execute */ static generateChecklistInstruction(checklistType: string, workflowPath: string, featureName: string, workflowId?: string): string; } //# sourceMappingURL=handler-utils.d.ts.map