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
40 lines • 1.09 kB
TypeScript
/**
* CLI utility for CortexWeaver 3.0 Prompt Improvement Workflow
*
* This utility provides command-line access to the prompt improvement system:
* - View version history
* - Process pending approvals
* - Apply improvements
* - Rollback changes
* - Generate reports
*/
interface CLIOptions {
workspaceRoot?: string;
command?: string;
promptFile?: string;
versionId?: string;
format?: 'json' | 'table' | 'summary';
hoursBack?: number;
verbose?: boolean;
}
declare class PromptImprovementCLI {
private workflow;
private options;
constructor(options?: CLIOptions);
initialize(): Promise<void>;
run(): Promise<void>;
private parseCommand;
private showVersionHistory;
private showStatus;
private applyImprovements;
private rollbackVersion;
private showAuditTrail;
private showRecentChanges;
private validateWorkspace;
private getStatusIcon;
private getActionIcon;
private showHelp;
}
export { PromptImprovementCLI };
//# sourceMappingURL=prompt-improvement-cli.d.ts.map