Skip to main content

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 known_issues;
12pub mod reader;
13pub mod self_manifest;
14pub mod skill_installer;
15pub mod status;
16pub mod upgrader;
17pub mod verifier;