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
33 lines • 872 B
TypeScript
/**
* CoderUtilities contains helper functions for the CoderAgent
*/
export declare class CoderUtilities {
/**
* Get default coding standards
*/
static getDefaultCodingStandards(): any;
/**
* Format coding standards for prompt
*/
static formatCodingStandards(standards: any): string;
/**
* Determine failure type from error
*/
static getFailureType(error: Error): string;
/**
* Extract last error message
*/
static getLastErrorMessage(error: Error): string;
/**
* Generate file paths for code and tests
*/
static generateFilePaths(taskId: string, language?: string): {
codeFile: string;
testFile: string;
};
/**
* Create commit message for task
*/
static createCommitMessage(task: any): string;
}
//# sourceMappingURL=coder-utilities.d.ts.map