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

19 lines 863 B
/** * 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 */ export { CLI, CLICommands, CLIValidators, CLIParsers } from './cli/index'; export type { ParsedArgs, AgentPersonaInfo, ProjectConfigOptions, AuthMethodConfig, TaskFilters, ValidationResult } from './cli/parsers'; import { CLI } from './cli/index'; export default CLI; //# sourceMappingURL=cli.d.ts.map