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

45 lines 1.6 kB
/** * Example usage of the Prompt Improvement Workflow system * * This example demonstrates how to: * 1. Initialize the workflow * 2. Process improvement proposals from Reflector * 3. Handle Governor approvals * 4. Apply improvements and maintain version history * 5. Support rollback functionality */ import { PromptImprovementWorkflow, ImprovementProposal } from '../prompt-improvement'; /** * Example: Setting up the prompt improvement workflow */ declare function initializeWorkflow(): Promise<PromptImprovementWorkflow>; /** * Example: Processing Reflector improvement proposals */ declare function processReflectorProposals(): Promise<ImprovementProposal[]>; /** * Example: Simulating Governor approval process */ declare function simulateGovernorApprovals(): Promise<void>; /** * Example: Applying approved improvements */ declare function applyApprovedImprovements(): Promise<void>; /** * Example: Version history and rollback */ declare function demonstrateVersionControl(): Promise<void>; /** * Example: Validation and audit trail */ declare function demonstrateValidationAndAudit(): Promise<void>; /** * Example: Hot-reload integration */ declare function demonstrateHotReload(): Promise<void>; /** * Complete workflow example */ declare function completeWorkflowExample(): Promise<void>; export { initializeWorkflow, processReflectorProposals, simulateGovernorApprovals, applyApprovedImprovements, demonstrateVersionControl, demonstrateValidationAndAudit, demonstrateHotReload, completeWorkflowExample }; //# sourceMappingURL=prompt-improvement-example.d.ts.map