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

9 lines 388 B
/** * DockerBaseTemplates handles basic Docker files like Dockerfile and .dockerignore */ export declare class DockerBaseTemplates { static createDockerfile(projectRoot: string): Promise<void>; static createDockerIgnore(projectRoot: string): Promise<void>; static createDockerfileDev(projectRoot: string): Promise<void>; } //# sourceMappingURL=docker-base-templates.d.ts.map