summaryrefslogtreecommitdiff
path: root/makima/src/orchestration
Commit message (Collapse)AuthorAgeFilesLines
* Makima system improvements: Orders, directive questions, PR creation fix, ↵soryu2026-02-141-2/+86
| | | | | | | | | | | | | | | | | | | | | | | bug fixes (#62) * feat: soryu-co/soryu - makima: Fix directive goal update bug - stale closure issue * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Create Orders database schema and backend API * feat: soryu-co/soryu - makima: Fix task Claude instance not receiving user inputs from input box * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Build Orders frontend page replacing the Board page * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Fix directive PR creation system
* Rerun plan when directive goal is edited (#61)soryu2026-02-131-18/+112
| | | | | | | | | | | | | | | When a directive's goal is updated, pending/ready/failed/skipped steps are now automatically cleared so that replanning generates fresh steps aligned with the new goal. The planning prompt is also improved to clearly categorize existing steps by status and provide explicit instructions for re-evaluation. Changes: - Add clear_pending_directive_steps() repository function to remove non-started steps when the goal changes - Call step cleanup in the update_goal HTTP handler - Restructure the planning prompt to categorize steps (completed, running, pending, failed, skipped) with clear instructions for each category Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Fix worktree branching for directive tasks and remove memoriessoryu2026-02-131-81/+3
|
* Make sure directive tasks inherit worktreessoryu2026-02-131-7/+67
|
* Fix PR creation task for directives to be atomicsoryu2026-02-121-1/+24
|
* Add depends_on for directive taskssoryu2026-02-121-7/+48
| | | | | # Conflicts: # makima/src/orchestration/directive.rs
* makima: Add an optional memory system for directives (#59)soryu2026-02-121-4/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feat: makima: Add an optional memory system for directives: Add directive_memories database table and migration * feat: makima: Add an optional memory system for directives: Update directive skill documentation with memory commands * feat: makima: Add an optional memory system for directives: Add repository functions for directive memory CRUD * feat: makima: Add an optional memory system for directives: Add frontend API functions and types for directive memory * feat: makima: Add an optional memory system for directives: Add Rust models for directive memory * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * feat: makima: Add an optional memory system for directives: Add memory panel to frontend DirectiveDetail component * Merge remote-tracking branch 'origin/makima/makima--add-an-optional-memory-system-for-directiv-5de1e06d' into combined branch * Merge remote-tracking branch 'origin/makima/makima--add-an-optional-memory-system-for-directiv-c8298c6c' into combined branch * feat: makima: Add an optional memory system for directives: Create useMultiTaskSubscription hook for multi-output WebSocket streaming * feat: makima: Add an optional memory system for directives: Create DirectiveLogStream component for stern-like multi-task output viewing * feat: makima: Add an optional memory system for directives: Integrate log stream panel into directive detail page
* Fix DAG orderingsoryu2026-02-111-1/+3
|
* Add auto-PR creation for remote repos in directivessoryu2026-02-101-2/+252
|
* Set directive env vars correctly for daemonsoryu2026-02-091-0/+1
|
* Add directive task progressionsoryu2026-02-091-7/+34
|
* Add directive initsoryu2026-02-092-1/+479
|
* Remove directive mechanismsoryu2026-02-082-1686/+1
|
* Fix directive evaluation and add to frontendsoryu2026-02-081-37/+180
|
* Fix directive evaluationsoryu2026-02-081-13/+30
|
* Fix directive deletion and stop local only on contractssoryu2026-02-081-3/+6
|
* Fixes for directive chain initsoryu2026-02-081-104/+154
|
* Fixes for directive chain creationsoryu2026-02-071-6/+103
|
* Check on completion for contractssoryu2026-02-071-0/+125
|
* Add directive monitor contractssoryu2026-02-071-24/+538
|
* Add directive init mechanismsoryu2026-02-072-0/+737
|
* Remove directives for reimplementationsoryu2026-02-074-3042/+0
|
* Fix: Link directives and contractssoryu2026-02-062-6/+47
|
* Fix: Cleanup old chain codesoryu2026-02-064-10/+143
|
* Fix: Directives fixessoryu2026-02-061-111/+299
|
* Fix: Directives APIsoryu2026-02-061-28/+158
|
* Add directive-first chain system redesignsoryu2026-02-054-0/+2550
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 <noreply@anthropic.com>