Operational Boundaries¶
Operations guidance should make two boundaries obvious: what a maintainer can do locally with confidence, and what the runtime still refuses to claim.
This page is therefore less about listing commands and more about setting expectations. It tells the reader which local actions are supported, where to look when those actions change tracked state, and why some kinds of stronger language are still blocked.
Local Development¶
- start with
make install - use
make docs-servefor docs review - prefer narrow tests before broad rebuilds
Observability And Diagnostics¶
- inspect
data/collection_summary.jsonafter collection work - inspect
docs/report/published_reports_summary.jsonafter publication work - inspect repository truth reviews when a change affects scope or claim posture
Release And Versioning¶
- the runtime follows the checked-in AADR version and report naming contracts
- release automation publishes only after repository-health checks pass
- package and report publication are downstream of tracked repository state
Security And Safety¶
- keep transient output under
artifacts/ - do not treat unchecked external source output as publishable state
- do not let public docs or atlas language outrun the tracked evidence surfaces
Performance Posture¶
Rebuilds can be slow because they touch tracked source and report surfaces. That cost is acceptable when it preserves reviewable repository truth, but it is not a license to run the broadest workflow every time. The honest operating rule is still: choose the narrowest workflow that answers the question in front of you.