From 88a4f15ce1310f8ee8693835be14aa5280233f17 Mon Sep 17 00:00:00 2001 From: soryu Date: Thu, 5 Feb 2026 23:42:48 +0000 Subject: Add directive-first chain system redesign Redesigns the chain system with a directive-first architecture where Directive is the top-level entity (the "why/what") and Chains are generated execution plans (the "how") that can be dynamically modified. Backend: - Add database migration for directive system tables - Add Directive, DirectiveChain, ChainStep, DirectiveEvent models - Add DirectiveVerifier and DirectiveApproval models - Add orchestration module with engine, planner, and verifier - Add comprehensive API handlers for directives - Add daemon CLI commands for directive management - Add directive skill documentation - Integrate contract completion with directive engine - Add SSE endpoint for real-time directive events Frontend: - Add directives route with split-view layout - Add 6-tab detail view (Overview, Chain, Events, Evaluations, Approvals, Verifiers) - Add React Flow DAG visualization for chain steps - Add SSE subscription hook for real-time event updates - Add useDirectives and useDirectiveEventSubscription hooks - Add directive types and API functions Fixes: - Fix test failures in ws/protocol, task_output, completion_gate, patch - Fix word boundary matching in looks_like_task() - Fix parse_last() to find actual last completion gate - Fix create_export_patch when merge-base equals HEAD - Clean up clippy warnings in new code Co-Authored-By: Claude Opus 4.5 --- makima/src/llm/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makima/src/llm/mod.rs') diff --git a/makima/src/llm/mod.rs b/makima/src/llm/mod.rs index 702e1fd..6c9965c 100644 --- a/makima/src/llm/mod.rs +++ b/makima/src/llm/mod.rs @@ -46,7 +46,7 @@ pub use transcript_analyzer::{ calculate_speaker_stats, build_analysis_prompt, parse_analysis_response, }; pub use contract_evaluator::{ - ContractEvaluator, ContractEvaluationResult, EvaluationContext, EvaluationError, + ContractEvaluator, ContractEvaluationResult, ContractEvaluatorError, }; /// Available LLM providers and models -- cgit v1.2.3