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
24 lines • 729 B
TypeScript
/**
* Architect Agent Documentation Management
*
* Contains functionality for creating and formatting design documentation
*/
import { Agent } from '../../agent';
import { ArchitecturalAnalysis } from './types';
export declare class ArchitectDocumentation {
private agent;
constructor(agent: Agent);
/**
* Create design documentation files in the worktree
*/
createDesignDocumentation(analysis: ArchitecturalAnalysis): Promise<void>;
/**
* Format the complete design document
*/
private formatDesignDocument;
/**
* Format contract compliance section for the design document
*/
private formatContractComplianceSection;
}
//# sourceMappingURL=documentation.d.ts.map