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

29 lines 1.32 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ProjectTemplates = void 0; const plan_templates_1 = require("./plan-templates"); const persona_templates_1 = require("./persona-templates"); const prototype_templates_1 = require("./prototype-templates"); /** * ProjectTemplates coordinates the creation of main project structure files * Now uses modular approach with specialized template classes */ class ProjectTemplates { static async createPlanTemplate(projectRoot) { return plan_templates_1.PlanTemplates.createPlanTemplate(projectRoot); } static async createPromptsDirectory(projectRoot) { return persona_templates_1.PersonaTemplates.createPromptsDirectory(projectRoot); } static async createPrototypesDirectory(projectRoot) { return prototype_templates_1.PrototypeTemplates.createPrototypesDirectory(projectRoot); } static async createPrototypesReadme(prototypesPath) { return prototype_templates_1.PrototypeTemplates.createPrototypesReadme(prototypesPath); } static async createPrototypeTemplates(prototypesPath) { return prototype_templates_1.PrototypeTemplates.createPrototypeTemplates(prototypesPath); } } exports.ProjectTemplates = ProjectTemplates; //# sourceMappingURL=project-templates.js.map