From ec9738a069e61529be040eff065318972b8a11e2 Mon Sep 17 00:00:00 2001 From: soryu Date: Wed, 4 Mar 2026 16:47:12 +0000 Subject: feat: task slide-out panel, 3-way reconcile toggle, daemon reauth fix (#85) * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Fix daemon reauth flow for new claude setup-token output format * feat: soryu-co/soryu - makima: Update frontend reconcile toggle to three-way switch * feat: soryu-co/soryu - makima: Add task slide-out panel to directive page --- makima/src/db/models.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'makima/src/db/models.rs') diff --git a/makima/src/db/models.rs b/makima/src/db/models.rs index 6292e7b..32e55f0 100644 --- a/makima/src/db/models.rs +++ b/makima/src/db/models.rs @@ -2714,8 +2714,8 @@ pub struct Directive { pub pr_url: Option, pub pr_branch: Option, pub completion_task_id: Option, - /// Whether questions pause execution indefinitely until answered - pub reconcile_mode: bool, + /// Question timeout mode: "auto" (30s timeout), "semi-auto" (block indefinitely), "manual" (block + ask many questions) + pub reconcile_mode: String, pub goal_updated_at: DateTime, pub started_at: Option>, pub version: i32, @@ -2780,8 +2780,8 @@ pub struct DirectiveSummary { pub orchestrator_task_id: Option, pub pr_url: Option, pub completion_task_id: Option, - /// Whether questions pause execution indefinitely until answered - pub reconcile_mode: bool, + /// Question timeout mode: "auto" (30s timeout), "semi-auto" (block indefinitely), "manual" (block + ask many questions) + pub reconcile_mode: String, pub version: i32, pub created_at: DateTime, pub updated_at: DateTime, @@ -2808,8 +2808,8 @@ pub struct CreateDirectiveRequest { pub repository_url: Option, pub local_path: Option, pub base_branch: Option, - /// Whether questions pause execution indefinitely until answered - pub reconcile_mode: Option, + /// Question timeout mode: "auto", "semi-auto", or "manual" + pub reconcile_mode: Option, } /// Request to update a directive. @@ -2825,8 +2825,8 @@ pub struct UpdateDirectiveRequest { pub orchestrator_task_id: Option, pub pr_url: Option, pub pr_branch: Option, - /// Whether questions pause execution indefinitely until answered - pub reconcile_mode: Option, + /// Question timeout mode: "auto", "semi-auto", or "manual" + pub reconcile_mode: Option, pub version: Option, } -- cgit v1.2.3