kanade-agent 0.43.40

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
12
13
//! 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) + [`jobs`] (`jobs.list` read-only catalog;
//! the execute/progress/kill run half lands in a follow-up PR).
//! Remaining namespaces (notifications, support, maintenance) land in
//! follow-up PRs; each adds one sibling module and routes for it in
//! [`super::dispatcher`].

pub mod jobs;
pub mod state;
pub mod system;