1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Agent-to-agent communication substrate: named rooms, per-agent inbox, and the
//! singleton broker daemon that backs them.
//!
//! This module is built in phases (see `docs/agent-comms.md`). The first landed piece is
//! [`ids`] — the validated identifier newtypes that double as composite-key segments in the
//! comms store. Subsequent phases add the transport traits, the second Fjall-backed
//! `CommsStore`, the broker, and the front-ends (Unix socket, in-process, future A2A HTTP).
/// Schema version for the comms store, bound to the release minor exactly like
/// `INDEX_SCHEMA_VER` and the blob `SCHEMA_VER`. A mismatch wipes the comms store and the
/// daemon rebuilds it from scratch — comms history is durable-but-disposable scratch, not a
/// source of truth.
pub const COMMS_SCHEMA_VER: u32 = crateRELEASE_MINOR as u32;