UNPKG

@workflow-manager/runner

Version:

CLI runner for in-memory and markdown workflow orchestration using ATEP-like envelopes

11 lines (10 loc) 832 B
import type { WorkflowDefinition } from "../types.js"; export declare function bundleSkills(workflow: WorkflowDefinition, workflowFilePath: string): WorkflowDefinition; export declare function cmdAuth(args: string[]): Promise<number>; export declare function cmdSearch(args: string[]): Promise<number>; export declare function cmdPublish(filePath: string, args: string[]): Promise<number>; export declare function cmdPull(reference: string, args: string[]): Promise<number>; export declare function cmdRemoteInfo(reference: string): Promise<number>; export declare function pullOutputPathForTest(reference: string, output?: string, sourceFormat?: "markdown" | "json"): string; export declare function slugifyForTest(value: string): string; export declare function sourceFormatFromPathForTest(filePath: string): "markdown" | "json";