Skip to main content

mur_common/
lib.rs

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