From ac24d15bab159a530612275d9c839c4e824898aa Mon Sep 17 00:00:00 2001 From: iven Date: Sun, 5 Apr 2026 00:04:20 +0800 Subject: [PATCH] fix(tauri): add @reserved annotations to 3 unconnected commands - classroom_chat_history: @reserved (no frontend consumer) - orchestration_execute: @reserved (no frontend consumer) - orchestration_validate: @reserved (no frontend consumer) Update AUDIT_TRACKER: V11-P2-05 verified (89 connected / 18 @reserved) DEAD-05 re-evaluated: 12 truly dead methods (not 39), documented in tracker --- desktop/src-tauri/src/classroom_commands/chat.rs | 2 +- desktop/src-tauri/src/kernel_commands/orchestration.rs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/desktop/src-tauri/src/classroom_commands/chat.rs b/desktop/src-tauri/src/classroom_commands/chat.rs index d10aac0..9d441a1 100644 --- a/desktop/src-tauri/src/classroom_commands/chat.rs +++ b/desktop/src-tauri/src/classroom_commands/chat.rs @@ -114,7 +114,7 @@ pub async fn classroom_chat( } /// Retrieve chat history for a classroom -// @connected +// @reserved: no frontend consumer yet #[tauri::command] pub async fn classroom_chat_history( chat_store: State<'_, ChatStore>, diff --git a/desktop/src-tauri/src/kernel_commands/orchestration.rs b/desktop/src-tauri/src/kernel_commands/orchestration.rs index dea58ad..b869308 100644 --- a/desktop/src-tauri/src/kernel_commands/orchestration.rs +++ b/desktop/src-tauri/src/kernel_commands/orchestration.rs @@ -206,6 +206,7 @@ impl From for OrchestrationRes /// /// Either auto-composes a graph from skill_ids, or uses a pre-defined graph. /// Executes with true parallel execution within each dependency level. +// @reserved: no frontend consumer yet #[tauri::command] pub async fn orchestration_execute( state: State<'_, KernelState>, @@ -249,6 +250,7 @@ pub async fn orchestration_execute( } /// Validate an orchestration graph without executing it +// @reserved: no frontend consumer yet #[tauri::command] pub async fn orchestration_validate( state: State<'_, KernelState>,