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

27 lines 1.46 kB
"use strict"; /** * CLI Entry Point - Stub File * * This file serves as a stub that delegates to the modular CLI implementation * in the cli/ directory. The actual implementation has been refactored into * multiple modules to maintain the 500-line limit per file. * * Modular structure: * - cli/index.ts - Main CLI orchestrator * - cli/commands.ts - Command implementations * - cli/parsers.ts - Argument parsing and validation * - cli/validators.ts - Input validation and project checks * - cli/prompt-improvement-cli.ts - Prompt improvement specific commands */ Object.defineProperty(exports, "__esModule", { value: true }); exports.CLIParsers = exports.CLIValidators = exports.CLICommands = exports.CLI = void 0; // Re-export the main CLI class and all related types/interfaces var index_1 = require("./cli/index"); Object.defineProperty(exports, "CLI", { enumerable: true, get: function () { return index_1.CLI; } }); Object.defineProperty(exports, "CLICommands", { enumerable: true, get: function () { return index_1.CLICommands; } }); Object.defineProperty(exports, "CLIValidators", { enumerable: true, get: function () { return index_1.CLIValidators; } }); Object.defineProperty(exports, "CLIParsers", { enumerable: true, get: function () { return index_1.CLIParsers; } }); // Maintain backward compatibility by providing a default export const index_2 = require("./cli/index"); exports.default = index_2.CLI; //# sourceMappingURL=cli.js.map