klieo-ops-api 3.3.0

Read-only HTTP monitoring router for klieo agentic systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Axum handlers for the `/_ops` monitoring endpoints. Each submodule
//! covers one resource family (runs, A2A tasks, MCP resume streams).
//! Every handler is `pub(crate)` and reached only through the router
//! built by [`crate::OpsRouterBuilder::build`].

/// `GET /runs`, `GET /runs/{id}`, `GET /agents` — RunLog + agent aggregates.
pub mod runs;
/// `GET /streams` — MCP resume-buffer per-stream summaries.
pub mod streams;
/// `GET /tasks` — A2A task store listing.
pub mod tasks;