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 agents_render;
9pub mod assess;
10pub mod hooks_render;
11pub mod installer;
12pub mod known_issues;
13pub mod policy;
14pub mod reader;
15pub mod self_manifest;
16pub mod skill_installer;
17pub mod status;
18pub mod tracking;
19pub mod upgrader;
20pub mod verifier;