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

12 lines 868 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AgentSessionManager = exports.AgentErrorHandler = exports.Agent = void 0; // Re-export the main Agent class var agent_base_1 = require("./agent-base"); Object.defineProperty(exports, "Agent", { enumerable: true, get: function () { return agent_base_1.Agent; } }); // Re-export helper components for advanced usage var agent_error_handling_1 = require("./agent-error-handling"); Object.defineProperty(exports, "AgentErrorHandler", { enumerable: true, get: function () { return agent_error_handling_1.AgentErrorHandler; } }); var agent_session_management_1 = require("./agent-session-management"); Object.defineProperty(exports, "AgentSessionManager", { enumerable: true, get: function () { return agent_session_management_1.AgentSessionManager; } }); //# sourceMappingURL=agent.js.map