@workflow-manager/runner
Version:
CLI runner for in-memory and markdown workflow orchestration using ATEP-like envelopes
5 lines (4 loc) • 507 B
TypeScript
import type { InputEnvelope, OutputEnvelope, StepDefinition, StepExecutionHooks, WorkflowDefinition } from "./types.js";
export declare function normalizeTimeout(value: unknown, fallbackMs?: number): number;
export declare function shouldUseRealClaudeCode(step: StepDefinition): boolean;
export declare function executeClaudeCodeStep(step: StepDefinition, input: InputEnvelope, attempt: number, workflow?: WorkflowDefinition, workflowFilePath?: string, hooks?: StepExecutionHooks): Promise<OutputEnvelope>;