UNPKG

@agentled/cli

Version:

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

18 lines (17 loc) 754 B
/** * `agentled init [slug]` — bootstrap a local workspace folder for building, * testing, and iterating on workflows without per-iteration credit cost. * * Creates agentled_<slug>/ in cwd with: * - .agentled/workspace.json + cache/ (apps + models) * - docs/ (SKILL.md + GOTCHAS.md) * - examples/scaffolds/ (bundled JSON skeletons) * - examples/live/, fixtures/, tests/, drafts/ (empty, agent fills these) * * See `agentled workspace sync` to refresh cached data. * See `agentled workflows pull <id>` to import a live workflow. * See `agentled fixture capture` + `agentled test` for the zero-credit * iteration loop. */ import { Command } from 'commander'; export declare function registerInitCommand(program: Command): void;