@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) • 428 B
TypeScript
/**
* `agentled tools builtins` — list the builtin tools accepted by
* `aiActionWithTools` steps (`tools[].builtinType` values).
*
* The canonical source is the `Tool.builtinType` union in
* `shared/types/pipeline/PipelineTypes.ts`; the CLI ships a mirror at
* `src/builtin-tools-catalog.ts` (drift-tested).
*/
import { Command } from 'commander';
export declare function registerToolsCommands(program: Command): void;