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 hooks_render;
9pub mod installer;
10pub mod reader;
11pub mod self_manifest;
12pub mod skill_installer;
13pub mod status;
14pub mod upgrader;
15pub mod verifier;