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 759 B
import { FormalContracts, ArchitecturalDesign } from './index'; /** * ContractBuilder handles building contract context for prompts */ export declare class ContractBuilder { /** * Build contract context for code generation prompts */ static buildContractContext(formalContracts?: FormalContracts): Record<string, string>; /** * Build architectural design context for code generation prompts */ static buildArchitecturalContext(architecturalDesign?: ArchitecturalDesign): Record<string, string>; /** * Build contract testing context for test generation prompts */ static buildContractTestContext(formalContracts?: FormalContracts): Record<string, string>; } //# sourceMappingURL=contract-builder.d.ts.map