Skip to main content

spec_driven_docs/
domain.rs

1//! Pure domain types and invariants.
2//!
3//! Everything here is computable without I/O: identifiers, the instance
4//! manifest schema, profiles, marker-block string surgery, and version
5//! ordering. No filesystem access, no process state — modules that touch
6//! the world live in `services` and `adapters`.
7
8pub mod finding;
9pub mod gate_id;
10pub mod manifest;
11pub mod marker;
12pub mod ownership;
13pub mod profile;
14pub mod rule_id;
15pub mod skill_record;
16pub mod version;