systemg 0.57.4

An agent-friendly general process composer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The `inspect` command's plan layer, rebuilt from first principles.
//!
//! - [`crate::inspect::plan`] — resolves the selector into an
//!   [`crate::inspect::InspectPlan`] for the one service to detail, rejecting
//!   selectors inspect cannot serve.
//! - [`crate::inspect::diagnostics`] — typed diagnostics for inspect failures.
//!
//! The payload collection and rendering live in the binary; this module only
//! decides which service is being inspected.

pub mod diagnostics;
pub mod plan;

pub use diagnostics::{invalid_stream_duration, service_not_found};
pub use plan::{InspectPlan, InspectPlanError, resolve_plan};