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
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:
@@ -114,7 +114,7 @@ pub async fn classroom_chat(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Retrieve chat history for a classroom
|
/// Retrieve chat history for a classroom
|
||||||
// @connected
|
// @reserved: no frontend consumer yet
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub async fn classroom_chat_history(
|
pub async fn classroom_chat_history(
|
||||||
chat_store: State<'_, ChatStore>,
|
chat_store: State<'_, ChatStore>,
|
||||||
|
|||||||
@@ -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.
|
/// Either auto-composes a graph from skill_ids, or uses a pre-defined graph.
|
||||||
/// Executes with true parallel execution within each dependency level.
|
/// Executes with true parallel execution within each dependency level.
|
||||||
|
// @reserved: no frontend consumer yet
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub async fn orchestration_execute(
|
pub async fn orchestration_execute(
|
||||||
state: State<'_, KernelState>,
|
state: State<'_, KernelState>,
|
||||||
@@ -249,6 +250,7 @@ pub async fn orchestration_execute(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Validate an orchestration graph without executing it
|
/// Validate an orchestration graph without executing it
|
||||||
|
// @reserved: no frontend consumer yet
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub async fn orchestration_validate(
|
pub async fn orchestration_validate(
|
||||||
state: State<'_, KernelState>,
|
state: State<'_, KernelState>,
|
||||||
|
|||||||
Reference in New Issue
Block a user