UNPKG

@nestbox-ai/cli

Version:

The cli tools that helps developers to build agents

17 lines (16 loc) 456 B
export interface TemplateConfig { name: string; description: string; prompts: any[]; actions: any[]; } /** * Generate project using plop.js templates */ export declare function generateWithPlop(templateType: string, language: string, targetFolder: string, projectName?: string, agentName?: string): Promise<{ agentNameInYaml: string; }>; /** * List available templates */ export declare function listAvailableTemplates(): string[];