huskies: merge 600_story_gateway_aggregated_pipeline_status_mcp_and_chat

This commit is contained in:
dave
2026-04-23 10:38:30 +00:00
parent b3da321a3b
commit c9e8ed030e
2 changed files with 498 additions and 42 deletions
@@ -185,7 +185,8 @@ pub(super) async fn on_room_message(
// endpoint. Only a small set of gateway-local commands are handled here.
if ctx.is_gateway() {
// Commands that are meaningful on the gateway itself (no project state needed).
const GATEWAY_LOCAL_COMMANDS: &[&str] = &["help", "ambient", "reset", "switch"];
const GATEWAY_LOCAL_COMMANDS: &[&str] =
&["help", "ambient", "reset", "switch", "all_status"];
let stripped = crate::chat::util::strip_bot_mention(
&user_message,
@@ -229,6 +230,26 @@ pub(super) async fn on_room_message(
}
return;
}
// `all_status` — aggregate pipeline status across all projects (gateway-only).
if cmd == "all_status" {
let project_urls = ctx.gateway_project_urls.clone();
let client = reqwest::Client::new();
let statuses =
crate::gateway::fetch_all_project_pipeline_statuses(&project_urls, &client).await;
let response = crate::gateway::format_aggregate_status_compact(&statuses);
let html = markdown_to_html(&response);
if let Ok(msg_id) = ctx
.transport
.send_message(&room_id_str, &response, &html)
.await
&& let Ok(event_id) = msg_id.parse()
{
ctx.bot_sent_event_ids.lock().await.insert(event_id);
}
return;
}
// Gateway-local commands and freeform text fall through to normal handling below.
}