import Base from './Base'; /** * Make command for creating a new agent * Creates agent file and corresponding prompt file */ export default class MultiagentCreate extends Base { protected templatePath: string; protected promptTemplatePath: string; protected createPath: string; /** * Create agent file with customized content */ createFile(): void; /** * Create prompt file for the agent */ private createPromptFile; }