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

28 lines 1.37 kB
"use strict"; /** * Architect Agent - Modular Entry Point * * Re-exports all architect functionality from the modular structure */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ArchitectDocumentation = exports.ArchitectCore = void 0; var core_1 = require("./core"); Object.defineProperty(exports, "ArchitectCore", { enumerable: true, get: function () { return core_1.ArchitectCore; } }); var documentation_1 = require("./documentation"); Object.defineProperty(exports, "ArchitectDocumentation", { enumerable: true, get: function () { return documentation_1.ArchitectDocumentation; } }); __exportStar(require("./types"), exports); //# sourceMappingURL=index.js.map