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