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 mobile;
31pub mod model;
32pub mod model_resolve;
33pub mod multimodal;
34pub mod muragent;
35pub mod parameterize;
36pub mod pattern;
37pub mod permissions;
38pub mod pipeline;
39pub mod route;
40pub mod schedule;
41pub mod schedule_claim;
42pub mod scope;
43pub mod secret;
44pub mod signal;
45pub mod skill;
46pub mod sync_types;
47pub mod telemetry;
48pub mod trust;
49pub mod variable;
50pub mod workflow;
51
52pub use actor::{Actor, ActorSource};
53pub use conversation::{CONVERSATION_SCHEMA_VERSION, Content, Message, Role, Source};
54pub use hooks_config::HooksConfig;
55pub use pattern::Pattern;
56pub use scope::Scope;
57pub use signal::{
58    SIGNAL_SCHEMA_VERSION, Signal, SignalBatch, SignalBatchResponse, SignalKind, SignalTarget,
59};
60
61pub use a2a::Message as A2aMessage;
62pub use a2a::{JsonRpcError, JsonRpcRequest, JsonRpcResponse, Task, TaskState};
63pub use agent::{
64    AgentAppearance, AgentProfile, BehaviorPreset, DeploymentConfig, DeploymentType, Entitlements,
65    ExecutionMode, FederationConfig, FileTransferConfig, IdentityConfig, LockFile, PatternFilter,
66    Persona, PersonaCategory, RenderStatus, RetryPolicy, ScheduleEntry, SnapshotPolicy,
67    SnapshotRef,
68};
69pub use agent_name::{AgentNameError, MAX_AGENT_NAME_LEN, validate_agent_name};
70pub use bridge::{LlmEntitlement, LlmMode};
71pub use identity::{
72    AgentIdentity, ChainError, ChainOptions, ChainOutcome, IdentityError, RotationAttestation,
73    RotationReason, decode_pubkey, encode_pubkey, verify_chain,
74};
75pub use manifest::AgentManifest;