marshal-daemon 0.1.4

Coordination daemon for the marshal multi-agent service. Owns the live roster and routes messages between Claude Code sessions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Daemon-side library code: cleanup sweeper, nickname dedup saga, and
//! the on-disk event persister.
//!
//! `link()` is called from the bin to ensure the `inventory` registrations
//! generated by `#[myko_saga]` / `#[myko_command]` survive dead-code
//! elimination. Message delivery itself is handled directly by the
//! `marshal_entities::SendMessage` command — there's no saga in the critical path.

pub mod cleanup;
pub mod dedupe_nicknames;
pub mod persister;

pub fn link() {
    dedupe_nicknames::link();
}