UNPKG

@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) 482 B
/** * `agentled schema` — fetch the canonical PipelineStep field schema from the * live API (`GET /api/external/workflows/step-schema`). * * Wraps the existing `get_step_schema` MCP tool so the CLI-driven agent has * a no-MCP way to look up "what fields are valid on an appAction step?" or * "what's the minimal JSON for an aiAction?" before writing a pipeline. */ import { Command } from 'commander'; export declare function registerSchemaCommand(program: Command): void;