spec-driven-docs 0.2.0

Spec-driven documentation: current specs, immutable decision records, and executable gates kept coherent for people and coding agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Orchestration services: the work behind the lifecycle commands.
//!
//! Services compose domain types, embedded assets, and filesystem adapters
//! into the install, verify, upgrade, and rendering operations. Argument
//! parsing stays in `cli`, printing in `output`; nothing here reads argv or
//! writes a terminal.

pub mod hooks_render;
pub mod installer;
pub mod reader;
pub mod self_manifest;
pub mod upgrader;
pub mod verifier;