UNPKG

@agentled/cli

Version:

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

14 lines (13 loc) 517 B
/** * `agentled do` — Semantic Intent Router * * Describe what you want in natural language. Agentled finds the best matching * workflow, extracts inputs from your intent, and optionally executes it. * * Examples: * agentled do "find the CEO's email for stripe.com" * agentled do "research acme corp and score them" --execute * agentled do "scrape https://example.com" --execute --no-confirm */ import { Command } from 'commander'; export declare function registerDoCommand(program: Command): void;