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
34 lines • 995 B
TypeScript
/**
* CLI Utilities Module
* Contains helper methods and utilities for the CLI class
*/
export declare class CLIUtils {
/**
* Validate that a directory is a valid CortexWeaver project
*/
static validateProject(projectRoot: string): boolean;
/**
* Validate and potentially repair prototypes directory structure
*/
static validatePrototypesStructure(projectRoot: string): {
isValid: boolean;
missingDirs: string[];
};
/**
* Parse agent persona markdown files to extract metadata
*/
static parseAgentPersona(content: string, filename: string): {
name: string;
role: string;
description: string;
};
/**
* Get icon for task status
*/
static getTaskStatusIcon(status: string): string;
/**
* Create default agent personas in the prompts directory
*/
static createDefaultAgentPersonas(promptsDir: string): Promise<void>;
}
//# sourceMappingURL=cli-utils.d.ts.map