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