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 debt;
9pub mod finding;
10pub mod gate_id;
11pub mod instance_config;
12pub mod manifest;
13pub mod marker;
14pub mod ownership;
15pub mod path_filter;
16pub mod policy;
17pub mod profile;
18pub mod rule_id;
19pub mod skill_record;
20pub mod tracking;
21pub mod version;