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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//! Typed-ID newtypes shared by catalog DSL machines.
//!
//! These are stub-grade identifiers used by the catalog DSL (TLC-facing twin
//! of the runtime machines). They intentionally mirror the shape of the "real"
//! typed IDs elsewhere in the workspace (e.g. `meerkat_core::SessionId`,
//! `meerkat_mob::ids::AgentRuntimeId`) without taking a dependency on those
//! crates — the catalog DSL is a leaf crate.
/// Unique identifier for a configured MCP server.
///
/// Keyed on the server's configured name (matches `.rkat/mcp.toml` section
/// headers). The DSL uses this as the key of the `mcp_server_states` map on
/// `MeerkatMachine` state so the `[MCP_PENDING]` system-notice toggle is a
/// pure read off DSL-owned state.
;
/// Opaque correlation identifier for the peer request / response lifecycle.
///
/// Catalog-DSL twin of [`meerkat_core::PeerCorrelationId`]. Carried on all
/// W1-A peer-interaction inputs and effects; used as the key of the DSL's
/// `pending_peer_requests` and `inbound_peer_requests` substate maps so the
/// subscriber / stream registries can project deterministically off DSL state.
;
/// Stable identity of a comms runtime instance.
///
/// Catalog-DSL identity for an `Arc<dyn CommsRuntime>` pointer so the DSL can
/// distinguish distinct runtime instances and reject silent transport
/// downgrades (W2-G / issue #264). The runtime derives the string from the
/// `Arc`'s pointer address; the catalog DSL treats it as an opaque newtype.
;
/// Mob instance identifier.
///
/// Catalog-DSL twin of [`meerkat_mob::ids::MobId`] carried on
/// `AttachMobIngress` to record which mob owns a peer-ingress transport
/// capability. The runtime mirrors the real typed ID; catalog DSL keeps it
/// stub-grade since this crate is a leaf.
;