UNPKG

@agentled/cli

Version:

CLI for Agentled — manage workflows, apps, and knowledge from the command line. Zero context-window cost for AI agents.

16 lines (15 loc) 741 B
/** * `agentled group-manifest` — local validation and scaffolding for multi-workflow group manifests. * * Subcommands: * agentled group-manifest validate <file> # validate a manifest JSON against the schema * agentled group-manifest scaffold <pattern> # emit a starter manifest for a named pattern * * The manifest describes a multi-workflow system (KG lists, state machines, workflows, build order) * before any live workflow state is created. Agents should validate a manifest locally before * touching the Agentled API. * * See docs/GROUP_MANIFEST.md for the full spec and a worked example. */ import { Command } from 'commander'; export declare function registerGroupManifestCommands(program: Command): void;