Operations¶
The operations section covers repository work that sits above one package: setup that spans several surfaces, shared validation, release coordination, review discipline, and runtime migration checks. It should help a maintainer find the governing process without blurring package-local behavior into root process prose.
flowchart TB
question["repository operations question"]
local["local development"]
validation["testing and validation"]
review["review expectations"]
automation["automation and artifact governance"]
release["release and migration checks"]
proof["checked operational proof surface"]
question --> local
local --> validation
validation --> review
review --> automation
automation --> release
release --> proof
This section should move a maintainer from an operational question to the exact proof surface that governs it. If it only lists topics, it leaves readers to reconstruct the workflow themselves.
What This Section Is Really About¶
- how repository-wide work becomes trustworthy enough to publish
- how local proof, CI proof, and release proof connect instead of competing
- where migration validation becomes a first-class operational concern rather than a forgotten appendix
Start With¶
- Open Local Development when the first question is how to make and validate a change locally.
- Open Testing and Validation when the question is which checks prove which change class.
- Open Release and Versioning when the concern is publishable output, tags, or compatibility-sensitive version movement.
- Open Runtime Migration Validation when runtime migration proof is the release blocker.
Section Pages¶
- Local Development
- Testing and Validation
- Release and Versioning
- API and Schema Governance
- Runtime Migration Validation
- Contributor Workflows
- Automation Surfaces
- Artifact Governance
- Review Expectations
- Change Management
What This Section Settles¶
- which repository process owns a given proof obligation
- which checks belong before release-sensitive work can move forward
- when migration pressure changes the normal release and validation story
First Proof Check¶
Makefileandmakes/for root command routing.github/workflows/for shared automation and release orchestrationpackages/bijux-proteomics-dev/when helper code carries the operational rule
Design Pressure¶
The easy failure is to let repository operations read like a loose catalog instead of a governed sequence from local work to publishable proof.
Boundary¶
If a package handbook can explain the workflow honestly from package-local commands, tests, and contracts, the repository operations section should not try to own it.