UNPKG

cortexweaver

Version:

CortexWeaver is a command-line interface (CLI) tool that orchestrates a swarm of specialized AI agents, powered by Claude Code and Gemini CLI, to assist in software development. It transforms a high-level project plan (plan.md) into a series of coordinate

13 lines 656 B
/** * ConfigTemplates coordinates the creation of configuration files * Now uses modular approach with specialized template classes */ export declare class ConfigTemplates { static createEnvTemplate(projectRoot: string): Promise<void>; static createOpenApiTemplate(apiPath: string): Promise<void>; static createJsonSchemaTemplates(schemasPath: string): Promise<void>; static createAdditionalSchemaTemplates(schemasPath: string): Promise<void>; static createContractsDirectory(projectRoot: string): Promise<void>; static createGitIgnoreTemplate(projectRoot: string): Promise<void>; } //# sourceMappingURL=config-templates.d.ts.map