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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//! Value objects for designing an agentic system.
//!
//! A ceremony coordinates one procedure. This vocabulary describes the
//! level above it: business roles, logical participants, how they
//! collaborate, which ceremonies the system composes and under what
//! supervision.
//!
//! Two rules run through the whole module. Nothing here owns a
//! ceremony — compositions reference published definitions by an
//! immutable pin — and nothing here is named for what actually ran:
//! profiles are requested, participants are logical, and what a host
//! really did belongs to the claim that recorded it.
pub use AgenticSystemDigest;
pub use AgenticSystemLifecycle;
pub use AgenticSystemPageLimit;
pub use AgenticSystemRevision;
pub use AgenticSystemValidationFinding;
pub use AgenticSystemValidationLocus;
pub use Capability;
pub use CeremonyActivation;
pub use CeremonyComposition;
pub use CeremonyExecutionLink;
pub use CeremonyOutputRef;
pub use ChannelName;
pub use CollaborationKind;
pub use CollaborationLink;
pub use ExecutionState;
pub use GuardRef;
pub use IndependenceGroup;
pub use IndependenceRule;
pub use LinkStatus;
pub use LogicalParticipant;
pub use LoopRound;
pub use LoopRounds;
pub use ModelName;
pub use ParticipantBindingPolicy;
pub use ParticipantId;
pub use ParticipantKind;
pub use ParticipantMaterialization;
pub use ReasoningEffort;
pub use RequestedExecutionProfile;
pub use Responsibility;
pub use SupervisionPolicy;
pub use SystemCeremonyId;
pub use SystemPin;
pub use SystemPurpose;
pub use SystemRole;
pub use SystemRoleId;
pub use SystemRoleKind;
pub use UnavailabilityReason;