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
12 lines • 599 B
TypeScript
/**
* ProjectTemplates coordinates the creation of main project structure files
* Now uses modular approach with specialized template classes
*/
export declare class ProjectTemplates {
static createPlanTemplate(projectRoot: string): Promise<void>;
static createPromptsDirectory(projectRoot: string): Promise<void>;
static createPrototypesDirectory(projectRoot: string): Promise<void>;
static createPrototypesReadme(prototypesPath: string): Promise<void>;
static createPrototypeTemplates(prototypesPath: string): Promise<void>;
}
//# sourceMappingURL=project-templates.d.ts.map