kanade-agent 0.42.0

Windows-side resident daemon for the kanade endpoint-management system. Subscribes to commands.* over NATS, runs scripts, publishes WMI inventory + heartbeats, watches for self-updates
1
2
3
4
5
6
7
8
9
10
11
//! Method handlers for KLP, grouped by SPEC ยง2.12.5 namespace.
//!
//! Shipping today: [`system`] (handshake / ping / version /
//! log_tail) + [`state`] (snapshot / subscribe / unsubscribe +
//! `state.changed` push). Remaining namespaces (notifications,
//! jobs, support, maintenance) land in follow-up PRs; each
//! follow-up adds one sibling module and routes for it in
//! [`super::dispatcher`].

pub mod state;
pub mod system;