chore: publish clean community baseline
Deploy / deploy (push) Failing after 4s
CI / Rust Checks (push) Successful in 5m11s
CI / UI Checks (push) Failing after 6s
CI / Frontend E2E (push) Has been skipped
CI / Deployment Manifests (push) Has been skipped

This commit is contained in:
github-ops
2026-06-17 06:15:46 +00:00
commit a023b8dc84
317 changed files with 72446 additions and 0 deletions
@@ -0,0 +1,8 @@
use axum::{Json, extract::State};
use serde_json::json;
use crate::state::AppState;
pub async fn get_capabilities(State(state): State<AppState>) -> Json<serde_json::Value> {
Json(json!(state.service.capability_profile().capabilities()))
}