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