spec_driven_docs/services.rs
1//! Orchestration services: the work behind the lifecycle commands.
2//!
3//! Services compose domain types, embedded assets, and filesystem adapters
4//! into the install, verify, upgrade, and rendering operations. Argument
5//! parsing stays in `cli`, printing in `output`; nothing here reads argv or
6//! writes a terminal.
7
8pub mod assess;
9pub mod hooks_render;
10pub mod installer;
11pub mod reader;
12pub mod self_manifest;
13pub mod skill_installer;
14pub mod status;
15pub mod upgrader;
16pub mod verifier;