UNPKG

@nestbox-ai/cli

Version:

The cli tools that helps developers to build agents

22 lines 851 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.registerAgentCommands = registerAgentCommands; const list_1 = require("./agent/list"); const remove_1 = require("./agent/remove"); const deploy_1 = require("./agent/deploy"); const createFromYaml_1 = require("./agent/createFromYaml"); /** * Register all agent-related commands */ function registerAgentCommands(program) { // Create the main agent command const agentCommand = program .command("agent") .description("Manage Nestbox agents"); // Register all subcommands (0, list_1.registerListCommand)(agentCommand); (0, remove_1.registerRemoveCommand)(agentCommand); (0, deploy_1.registerDeployCommand)(agentCommand); (0, createFromYaml_1.registerCreateFromYamlCommand)(agentCommand); } //# sourceMappingURL=agent.js.map