From 2247edc362bcdd8e91c912d4515b09e660fcbf23 Mon Sep 17 00:00:00 2001 From: iven Date: Thu, 9 Apr 2026 08:54:53 +0800 Subject: [PATCH] chore: add @reserved annotations to 5 butler Tauri commands These pain_aggregator functions have no frontend UI yet. --- desktop/src-tauri/src/intelligence/pain_aggregator.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/desktop/src-tauri/src/intelligence/pain_aggregator.rs b/desktop/src-tauri/src/intelligence/pain_aggregator.rs index 925fa75..32fde24 100644 --- a/desktop/src-tauri/src/intelligence/pain_aggregator.rs +++ b/desktop/src-tauri/src/intelligence/pain_aggregator.rs @@ -358,12 +358,14 @@ fn solution_store() -> Arc { } /// List all pain points for an agent. +// @reserved: no frontend UI yet #[tauri::command] pub async fn butler_list_pain_points(agent_id: String) -> std::result::Result, String> { Ok(pain_store().list_pain_points(&agent_id).await) } /// Record a new pain point from conversation analysis. +// @reserved: no frontend UI yet #[tauri::command] pub async fn butler_record_pain_point( agent_id: String, @@ -384,6 +386,7 @@ pub async fn butler_record_pain_point( } /// List all proposals for an agent. +// @reserved: no frontend UI yet #[tauri::command] pub async fn butler_list_proposals(agent_id: String) -> std::result::Result, String> { let store = pain_store(); @@ -398,6 +401,7 @@ pub async fn butler_list_proposals(agent_id: String) -> std::result::Result std::result::Result { let store = pain_store(); @@ -421,6 +425,7 @@ pub async fn butler_generate_solution(pain_id: String) -> std::result::Result