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
13 lines • 659 B
JavaScript
;
/**
* Error Recovery - Modular Entry Point
*
* Re-exports all error recovery functionality from the modular structure
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ErrorRecoveryStrategies = exports.ErrorRecoveryCore = void 0;
var core_1 = require("./core");
Object.defineProperty(exports, "ErrorRecoveryCore", { enumerable: true, get: function () { return core_1.ErrorRecoveryCore; } });
var strategies_1 = require("./strategies");
Object.defineProperty(exports, "ErrorRecoveryStrategies", { enumerable: true, get: function () { return strategies_1.ErrorRecoveryStrategies; } });
//# sourceMappingURL=index.js.map