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) 647 B
/** * `agentled examples` — surface workflow patterns bundled with the CLI. * * Canonical platform-agnostic patterns are mirrored from the public * `agentled/agentic-ops` repo. CLI-only patterns live in * `packages/cli/patterns/v1/` when the guidance is specific to Agentled CLI * workflow authoring. * * Usage: * agentled examples # list all patterns * agentled examples trigger-design # print pattern 01-trigger-design.md * agentled examples 02 # print pattern 02-dedup-gates.md */ import { Command } from 'commander'; export declare function registerExamplesCommand(program: Command): void;