Execution Model¶
The package executes as an explicit command-driven batch workflow.
Runtime Shape¶
- the root CLI parses arguments into one named subcommand
- runtime dispatch resolves the matching handler
- the handler loads defaults from
config.pyand option parsing helpers - collection or reporting code performs deterministic filesystem work
- the command exits after writing reviewable files
Consequences¶
- there is no long-lived process state between commands
- correctness is observed through tracked file outputs and command exit status
- operators can review each step separately: collection, report publishing, and docs build
Purpose¶
This page explains the runtime model that underpins every public command.