@agentled/cli
Version:
CLI for Agentled — manage workflows, apps, and knowledge from the command line. Zero context-window cost for AI agents.
11 lines (10 loc) • 464 B
TypeScript
/**
* `agentled fixture capture <executionId> --wf <workflowId>` — save all step
* outputs from an execution as local JSON fixtures for zero-credit replay.
* `agentled fixture list` — list all captured fixture sets.
*
* Auto-updates tests/<workflowId>.test.json so the assertions reference the
* captured execution as their fixture source.
*/
import { Command } from 'commander';
export declare function registerFixtureCommands(program: Command): void;