plazbot-cli
Version:
CLI para Plazbot SDK
33 lines (31 loc) • 1.13 kB
text/typescript
import { Command } from 'commander';
import { listCommand } from './list';
import { getCommand } from './get';
import { deleteCommand } from './delete';
import { createCommand } from './create';
import { updateCommand } from './update';
import { enableCommand } from './enable-widget';
import { chatCommand } from './chat';
import { messageCommand } from './on-message';
import { toolsCommand } from './tools';
import { aiConfigCommand } from './ai-config';
import { templatesCommand } from './templates';
import { copyCommand } from './copy';
import { filesCommand } from './files';
import { setCommand } from './set';
export const agentCommands = new Command('agent')
.description('Comandos relacionados con agentes de IA')
.addCommand(listCommand)
.addCommand(getCommand)
.addCommand(deleteCommand)
.addCommand(createCommand)
.addCommand(updateCommand)
.addCommand(enableCommand)
.addCommand(chatCommand)
.addCommand(messageCommand)
.addCommand(toolsCommand)
.addCommand(aiConfigCommand)
.addCommand(templatesCommand)
.addCommand(copyCommand)
.addCommand(filesCommand)
.addCommand(setCommand);