Skip to main content

mur_common/
lib.rs

1pub mod a2a;
2pub mod action;
3pub mod actor;
4pub mod agent;
5pub mod agent_name;
6pub mod bridge;
7pub mod build;
8pub mod bundle;
9pub mod canonical;
10pub mod channel;
11pub mod commander;
12pub mod companion;
13pub mod config;
14pub mod conversation;
15pub mod coordination;
16pub mod error;
17/// B0 M11 — JSONL output schema for the eval harness.
18pub mod eval;
19pub mod event;
20pub mod exec;
21pub mod expression;
22pub mod fleet;
23pub mod fleet_bundle;
24pub mod guard;
25pub mod hitl;
26pub mod hooks_config;
27pub mod hub;
28pub mod identity;
29pub mod jcs;
30pub mod knowledge;
31pub mod ledger;
32pub mod llm;
33pub mod local_llm;
34pub mod lock_file;
35pub mod manifest;
36pub mod media;
37pub mod mobile;
38pub mod model;
39pub mod model_resolve;
40pub mod multimodal;
41pub mod muragent;
42pub mod parallel;
43pub mod parameterize;
44pub mod pattern;
45pub mod permissions;
46pub mod pipeline;
47pub mod project;
48pub mod route;
49pub mod schedule;
50pub mod schedule_claim;
51pub mod scope;
52pub mod secret;
53pub mod signal;
54pub mod skill;
55pub mod sync_types;
56pub mod telemetry;
57pub mod trust;
58pub mod variable;
59pub mod workflow;
60pub mod zfs_protocol;
61
62pub use actor::{Actor, ActorSource};
63pub use conversation::{CONVERSATION_SCHEMA_VERSION, Content, Message, Role, Source};
64pub use hooks_config::HooksConfig;
65pub use pattern::Pattern;
66pub use scope::Scope;
67pub use signal::{
68    SIGNAL_SCHEMA_VERSION, Signal, SignalBatch, SignalBatchResponse, SignalKind, SignalTarget,
69};
70
71pub use a2a::Message as A2aMessage;
72pub use a2a::{JsonRpcError, JsonRpcRequest, JsonRpcResponse, Task, TaskState};
73pub use agent::{
74    AgentAppearance, AgentProfile, BehaviorPreset, DeploymentConfig, DeploymentType, Entitlements,
75    ExecutionMode, FederationConfig, FileTransferConfig, HitlConfig, IdentityConfig, LockFile,
76    PatternFilter, Persona, PersonaCategory, RenderStatus, RetryPolicy, ScheduleEntry,
77    SnapshotPolicy, SnapshotRef,
78};
79pub use agent_name::{AgentNameError, MAX_AGENT_NAME_LEN, validate_agent_name};
80pub use bridge::{LlmEntitlement, LlmMode};
81pub use channel::{
82    CHANNEL_SCHEMA_VERSION, Channel, ChannelActor, ChannelEvent, ChannelState, EventKind, Goal,
83    Participant, ParticipantRole,
84};
85pub use identity::{
86    AgentIdentity, ChainError, ChainOptions, ChainOutcome, IdentityError, RotationAttestation,
87    RotationReason, decode_pubkey, encode_pubkey, verify_chain,
88};
89pub use manifest::AgentManifest;