Skip to main content

mur_common/
lib.rs

1pub mod a2a;
2pub mod action;
3pub mod actor;
4pub mod agent;
5pub mod agent_facts;
6pub mod agent_name;
7pub mod authz;
8pub mod binary_attestation;
9pub mod bridge;
10pub mod build;
11pub mod bundle;
12pub mod canonical;
13pub mod capability;
14pub mod channel;
15pub mod cli_backend;
16pub mod commander;
17pub mod companion;
18pub mod config;
19pub mod config_migrate;
20pub mod conversation;
21pub mod coordination;
22pub mod deps;
23pub mod error;
24/// B0 M11 — JSONL output schema for the eval harness.
25pub mod eval;
26pub mod event;
27pub mod exec;
28pub mod expression;
29pub mod fleet;
30pub mod fleet_bundle;
31pub mod guard;
32pub mod hitl;
33pub mod hooks_config;
34pub mod hub;
35pub mod identity;
36pub mod jcs;
37pub mod knowledge;
38pub mod labels;
39pub mod ledger;
40pub mod limits;
41pub mod llm;
42pub mod local_llm;
43pub mod lock_file;
44pub mod manifest;
45pub mod mcp_naming;
46pub mod mcp_package;
47pub mod media;
48pub mod mobile;
49pub mod model;
50pub mod model_resolve;
51pub mod multimodal;
52pub mod muragent;
53pub mod net;
54pub mod official;
55pub mod panel;
56pub mod parallel;
57pub mod parameterize;
58pub mod paths;
59pub mod pattern;
60pub mod permissions;
61pub mod pipeline;
62pub mod project;
63pub mod redact;
64pub mod removable_volume;
65pub mod research_provider;
66pub mod route;
67pub mod schedule;
68pub mod schedule_claim;
69pub mod scope;
70pub mod secret;
71pub mod signal;
72pub mod skill;
73pub mod snapshot_request;
74pub mod sync_types;
75pub mod telemetry;
76pub mod test_env;
77pub mod trust;
78pub mod variable;
79pub mod workflow;
80pub mod worktree;
81pub mod zfs_protocol;
82
83pub use actor::{Actor, ActorSource};
84pub use conversation::{CONVERSATION_SCHEMA_VERSION, Content, Message, Role, Source};
85pub use hooks_config::HooksConfig;
86pub use pattern::Pattern;
87pub use removable_volume::REMOVABLE_VOLUME_EPERM_HINT;
88pub use scope::Scope;
89pub use signal::{
90    SIGNAL_SCHEMA_VERSION, Signal, SignalBatch, SignalBatchResponse, SignalKind, SignalTarget,
91};
92
93pub use a2a::Message as A2aMessage;
94pub use a2a::{JsonRpcError, JsonRpcRequest, JsonRpcResponse, Task, TaskState};
95pub use agent::{
96    AgentAppearance, AgentProfile, BehaviorPreset, DeploymentConfig, DeploymentType, Entitlements,
97    ExecutionMode, FederationConfig, FileTransferConfig, HitlConfig, IdentityConfig, LockFile,
98    PatternFilter, Persona, PersonaCategory, RenderStatus, RetryPolicy, ScheduleEntry,
99    SnapshotPolicy, SnapshotRef,
100};
101pub use agent_name::{AgentNameError, MAX_AGENT_NAME_LEN, validate_agent_name};
102pub use bridge::{LlmEntitlement, LlmMode};
103pub use channel::{
104    CHANNEL_SCHEMA_VERSION, Channel, ChannelActor, ChannelEvent, ChannelState, EventKind, Goal,
105    Participant, ParticipantRole,
106};
107pub use identity::{
108    AgentIdentity, ChainError, ChainOptions, ChainOutcome, IdentityError, RotationAttestation,
109    RotationReason, decode_pubkey, encode_pubkey, verify_chain,
110};
111pub use manifest::AgentManifest;