fix(tauri): add @reserved annotations to 3 unconnected commands
Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled

- 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
This commit is contained in:
iven
2026-04-05 00:04:20 +08:00
parent 26dc500b1b
commit ac24d15bab
2 changed files with 3 additions and 1 deletions

View File

@@ -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>,

View File

@@ -206,6 +206,7 @@ impl From<zclaw_skills::orchestration::OrchestrationResult> 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>,