Skip to main content

mur_core/
lib.rs

1//! MUR Commander Core — shared types, constitution, audit, and model definitions.
2//!
3//! This crate contains all the core logic with no I/O dependencies.
4//! It is used by the daemon, CLI, web, and chat crates.
5
6pub mod audit;
7pub mod constitution;
8pub mod cost;
9pub mod emerge;
10pub mod marketplace;
11pub mod model;
12pub mod auth;
13pub mod cache;
14pub mod membership;
15pub mod plugin;
16pub mod remote;
17pub mod reports;
18pub mod skill;
19pub mod team;
20pub mod types;
21pub mod workflow;