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