UNPKG

@nestbox-ai/cli

Version:

The cli tools that helps developers to build agents

16 lines (13 loc) 447 B
import { Command } from "commander"; import { registerProjectCommand } from "./generate/project"; /** * Register all generate-related commands */ export function registerGenerateCommands(program: Command): void { // Create the main generate command const generateCommand = program .command("generate") .description("Generate new projects and components"); // Register all subcommands registerProjectCommand(generateCommand); }