Maintainer Handbook¶
The private bijux-core control plane inspects and governs repository gates,
release proof, diagnostics, documentation generation, and the commands that
maintain those surfaces.
It does not define bijux behavior or DAG semantics. Those contracts remain
with the product packages even when a maintainer command is the first place
that exposes drift.
Choose The Owning Surface¶
| Question or action | Authority |
|---|---|
| install or validate the local toolchain | Toolchain Setup |
| select the required pre-review or release gate | Repository Gates |
| inspect repository or product health | bijux-dev-cli, described by the command surface |
| execute governed checks or compose release proof | bijux-dev-dag, described by the command surface |
| interpret a failed or incomplete repository result | Evidence Collection |
| decide whether an artifact is acceptable proof | Evidence Collection |
| respond to a publication, automation, or evidence incident | Incident Response |
| change repository policy | Ownership Model and Test Policy |
| change make or workflow orchestration | Make System and CI Targets |
| change package or release ownership across products | Repository Handbook |
| change end-user CLI behavior | CLI Handbook |
| change graph, runtime, backend, or artifact semantics | DAG Handbook |
Two Binaries, Two Authorities¶
| Binary | Owns | Does not own |
|---|---|---|
bijux-dev-cli |
repository status, product diagnostics, maintenance audits, documentation publishing, and structured observations | governed suite policy or product runtime behavior |
bijux-dev-dag |
suite catalogs, policy and contract execution, DAG evidence verification, aggregate status, and release-proof composition | alternate implementations of CLI or DAG semantics |
The binaries are complementary. Similar command names do not make their
responsibilities interchangeable. The bijux-dev package page
maps each authority to source code and its machine-readable contract.
flowchart LR
source["Repository source and contracts"]
observe["bijux-dev-cli<br/>observe and diagnose"]
govern["bijux-dev-dag<br/>select and execute suites"]
evidence["Structured reports under artifacts/"]
decision["Aggregate status or release decision"]
source --> observe --> evidence
source --> govern --> evidence
evidence --> decision
decision -. never redefines .-> source
The control plane reads product and repository truth; it must not become a second implementation of that truth. A failed contract changes the decision, not the contract being evaluated.
Decision Lifecycle¶
flowchart TB
claim["claim to evaluate"]
owner["identify implementation and contract owner"]
select["select named suite and source revision"]
execute["execute every selected component"]
collect["retain component results and final status"]
assess{"claim proven?"}
accept["record bounded evidence"]
reject["route failure to owning boundary"]
claim --> owner --> select --> execute --> collect --> assess
assess -->|"yes"| accept
assess -->|"no"| reject --> owner
The claim determines the suite. The desire for a green result does not determine the selection, exclusions, or threshold.
Result Acceptance¶
| Evidence element | Accepted condition | Insufficient substitute |
|---|---|---|
| source identity | full revision and observed worktree state | branch name or current-directory assumption |
| selection | named checks, domains, exclusions, and advisory policy | a broad label such as “tests” without its governed roster |
| producer | binary, command, version, and evidence contract | an output path with no producer identity |
| completion | terminal process status and aggregate required-suite result | process ID, launch success, or partial log |
| claim scope | explicit statement of what the selected evidence establishes | general repository or release readiness inferred from a focused command |
A focused command proves only its selected scope. A background run is
incomplete until its terminal status and final report have been inspected.
Generated output under artifacts/ is local run evidence; checked-in material
under docs/reports, docs/spec, or another governed path requires its named
producer and contract test.
Authority Separation¶
| Layer | May decide | Must not decide |
|---|---|---|
| product crate | runtime semantics and product-owned compatibility | whether its own failing release proof may be ignored |
bijux-dev-cli |
what repository or product facts were observed | alternate product behavior |
bijux-dev-dag |
selected suite execution and aggregate gate status | new runtime meaning for the product under test |
| make target | reproducible local composition and tool invocation | hidden policy absent from the owning suite or contract |
| hosted workflow | event, permissions, runner, credentials, and delegated target | a divergent hosted-only implementation of the gate |
| release workflow | publication sequence after proof is accepted | treating partial external mutation as a clean retry |
Operational Control Map¶
flowchart TB
change["source, contract, evidence, or dependency change"]
select["select owning verification"]
local["local make target"]
hosted["hosted workflow adapter"]
suite["bijux-dev suite or product contract"]
artifacts["logs · reports · status · immutable identities"]
decide{"claim established?"}
merge["review or release decision"]
respond["repair owner or enter incident response"]
change --> select
select --> local --> suite
select --> hosted --> suite
suite --> artifacts --> decide
decide -->|"yes, within recorded scope"| merge
decide -->|"no or incomplete"| respond --> select
The same suite can run locally or in hosted automation, but the environments are not identical. Hosted workflows additionally own event selection, permissions, credentials, runner setup, and artifact delivery. A green wrapper cannot replace the suite’s terminal status, and a local success cannot erase a hosted permission or publication incident.
Reliability Boundary¶
| Control | Prevents | Cannot guarantee |
|---|---|---|
| named suite selection | accidental substitution of an easier check | correctness outside the selected scope |
| complete aggregation | first-failure masking and partial green summaries | availability of external services |
| source and producer identity | evidence detached from the evaluated revision | that the producer’s contract is sufficient |
| generated-output contracts | hand-maintained drift in references and reports | product truth beyond the generator’s inputs |
| least-privilege workflows | unnecessary hosted authority | security of third-party services or actions |
| non-cancelling publication | loss of mutation evidence after one registry accepts output | atomic release across independent registries |
| incident reconciliation | blind retry over partial external state | reversal of already consumed artifacts or leaked credentials |