From 5d1fbed2733e93cc2be2e1a89ca022d88bef613f Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 24 Feb 2026 23:37:44 +0000 Subject: feat: non-blocking reconcile polling, directive CLI orders & cleanup (#82) * feat: soryu-co/soryu - makima: Remove aarch64-unknown-linux-gnu from release workflow * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Implement non-blocking ask with client-side polling for reconcile mode --- makima/src/server/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'makima/src/server/mod.rs') diff --git a/makima/src/server/mod.rs b/makima/src/server/mod.rs index 1ad3a8d..e0f8e7d 100644 --- a/makima/src/server/mod.rs +++ b/makima/src/server/mod.rs @@ -129,8 +129,11 @@ pub fn make_router(state: SharedState) -> Router { .route("/mesh/supervisor/tasks/{task_id}/merge", post(mesh_supervisor::merge_task)) .route("/mesh/supervisor/tasks/{task_id}/diff", get(mesh_supervisor::get_task_diff)) .route("/mesh/supervisor/pr", post(mesh_supervisor::create_pr)) + // Supervisor order creation endpoint + .route("/mesh/supervisor/orders", post(mesh_supervisor::create_order_for_task)) // Supervisor question endpoints .route("/mesh/supervisor/questions", post(mesh_supervisor::ask_question)) + .route("/mesh/supervisor/questions/{question_id}/poll", get(mesh_supervisor::poll_question)) .route("/mesh/questions", get(mesh_supervisor::list_pending_questions)) .route("/mesh/questions/{question_id}/answer", post(mesh_supervisor::answer_question)) // Mesh WebSocket endpoints -- cgit v1.2.3