transformation
The governed Change Request → Protocol Artifact pipeline, and it holds two compilers.
| Compiler | Transforms | Code | Registry |
|---|---|---|---|
| Design | problem → design | transformation/design/ |
registry/design/ |
| Construction | design → protocol artifacts | transformation/build/ |
registry/build/ |
They are two because they fail differently. A design failure is a mandate that is incomplete or contradictory, and a phase's rule set catches it. A construction failure is a mandate that was valid and did not uniquely determine an artifact — only the thing that renders can expose that, and the repair amends the design language rather than one register. Merging them would blur two failure classes that different layers repair.
The repository is named for the lifecycle, not for either compiler. transformation is not a
third compiler. A functional rehost of RI-0's pgs_change_mgmt, extended well past where RI-0
stopped.
A change begins as a plain-language problem statement and is driven through gated phases into an Authoring Mandate — a complete, reviewable dossier — before any protocol artifact is written. Only after the mandate is approved are artifacts authored, and the protocol compiler then governs their admissibility.
problem statement → P0 → Gate 0 → seed → dossier P1..P7 → Gate 1 → P8 → Gate 2
→ construction → authored artifacts
→ protocol_compiler S1..S9 → snapshot_assembler → conformance → runtime → trace
This pipeline is measured in phases (P0–P8); protocol_compiler is measured in stages
(S1–S9). RI-0 numbered both S1–S7/S1–S9, which made every piece of evidence ambiguous about which
pipeline produced it. A dossier has phases, a compilation has stages, and nothing uses one word for
the other.
Install
pip install pgc-transformation
Once installed:
tc --help
Build-time tool
transformation is CLI only — no TI/TE boundary contract, no Operation Identity, not
reachable over transport. A boundary contract governs a runtime surface served from a sealed
snapshot; this tool runs before a snapshot exists, its output is authored artifacts a human
gates, and its only reader is the person driving the change.
tc phase list # phases this build governs
tc phase check --phase p0 <seed.md> # structural oracle — ADMISSIBLE / INADMISSIBLE
tc phase check --phase p1 <register.md>
tc phase check --phase p2 <register.md> --snapshot <root> # grounds against the composition
tc phase template --phase p1 # the required section structure
tc phase rules --phase p1 # the declared rule set
tc phase project <prior.md> --phase p1 --out <doc.md> # phases that decide nothing
tc phase meta # do the rule sets themselves hold?
tc phase emit --check # are the sealed workflows current?
tc baseline show --snapshot <root> # the composition present, as a pin
tc baseline verify <pin.json> --snapshot <root>
tc baseline approve <pin.json> --phase p2 --by <who>
tc construction check <dossier> --snapshot <root> # does the design determine its artifacts?
tc construction emit <dossier> --root <domain> # render them, at 100% or not at all
Two of these judge the pipeline rather than a dossier. tc phase meta asserts that every declared
rule can run and every implemented mechanism is declared — if that correspondence breaks, a verdict
over a document is meaningless, because a rule that cannot run reports green over a subject it never
evaluated. tc phase emit --check asserts the sealed copy of a rule set still agrees with the
generator that produces it; a rule added after a workflow was emitted once left 52 rules sealed
against 55 declared, and every run reported confidently on the smaller set. Both belong in a build.
tc construction check measures determinacy before anything is written: the fraction of the
facts the artifacts require that the design determines. Below 100% nothing is emitted, because a
generator choosing a value it was not given is a generator inventing one.
The two loops
$W is the workspace root holding the sibling repos.
After editing a dossier's P7 or P8 — skipping a step leaves the snapshot describing a design that no longer exists:
D=$W/business_domains/book_library_mgmt/cr_dossiers/cr_01_catalog
tc construction check $D --snapshot $W/snapshot
tc construction emit $D --root $W/business_domains/book_library_mgmt
python $W/transformation/scripts/testbed/construction_acceptance.py
$W/protocol_compiler/compile_domain.sh $W/business_domains/book_library_mgmt
PGC_SNAPSHOT_PROFILE=REFERENCE_PLATFORM_PROFILE_V1 $W/snapshot_assembler/assemble.sh
--snapshot on the check is not optional in practice. Completeness never looks at what already
exists, so an artifact inventoried EXTEND is rendered whole and replaces its predecessor — a design
stating only the delta deletes the rest, at 100% completeness. The flag is what runs the narrowing
check; without it that check does not run, and says so.
Construction writes into data/, never into the domain. Promotion is a separate, deliberate act.
A tc construction build CLI existed once and was removed, because it duplicated a governed path
with an ungoverned one.
A new capability transform is a protocol artifact and a Python implementation. Construction renders
the first; the second is hand-authored at
business_domains/<domain>/implementation/capability_transforms/atoms/<code_lower>.py with a
callable execute(inputs, context) raising CTExecutionError. A CT whose module is missing returns
nothing and its contract yields VIOLATION — while every check above still passes.
After changing a phase's rule set — the rules are declared in
transformation/design/<phase>/rules.py and sealed into that phase's workflow artifact. Editing
the declaration alone leaves tc phase check and the governed workflow evaluating different rule
sets:
tc phase emit --check # names the drifted phase
python $W/transformation/scripts/emit_rule_sets.py # re-seal
$W/protocol_compiler/compile_domain.sh $W/transformation
PGC_SNAPSHOT_PROFILE=REFERENCE_PLATFORM_PROFILE_V1 $W/snapshot_assembler/assemble.sh
python $W/transformation/scripts/testbed/build_fixtures.py
python $W/transformation/scripts/testbed/build_payloads.py
Fixtures and payloads are derived from the live dossier — never hand-edit one; change the dossier
or the mutator in build_fixtures.py. A derived fixture cannot go stale silently, because the
derivation raises rather than producing a wrong one.
The fast inner loop is python scripts/testbed/differential.py, which drives the capability
transforms directly. It proves the rule sets and the check logic and nothing about workflow wiring;
scripts/testbed/e2e_phases_test.py boots the assembled snapshot and proves the wiring. Neither
substitutes for the other — a workflow that bound $.capability_result.header across nodes passed
the differential and failed immediately under the runtime.
From P2 a phase also needs its priors, or the handoff between phases goes unchecked: P1←p0 · P2←p1 · P3←p2 · P4←p3 · P5←p0 · P6←p5 · P7←p5+p6 · P8←p7. P5 reads the seed, not P4: the subdomain purpose is authored once at P0, has no register to travel in through P1–P4, and reappears at P5.
Why "transformation", not "change management"
PGC evolution is never greenfield. Every change is a transformation of an existing composition:
a new domain still compiles against the platform's normative closure and composes into a snapshot
that already exists. The name states what the tool does; change_mgmt named the process around it.
That property is also what makes the tool testable. Its distinguishing logic — REUSE / EXTEND decisions, placement, ownership, semantic preservation, roundtrip equivalence — is meaningful only against a baseline. A greenfield run exercises none of it.
Relationship to the rest of the toolchain
protocol_compiler source → compiled projections
snapshot_assembler projections → assembled snapshot
protocol_runtime snapshot → execution
snapshot_inspector snapshot → inspection
transformation problem → change request → authoring mandate (this repo)
Every snapshot fact this pipeline needs arrives through
inspector.api.query(operation, params, snapshot_root). It imports nothing from compiler.*.
RI-0's pipeline reached directly into pgs_compiler.compiler.projections to build indexes itself;
removing that coupling is why snapshot_inspector was completed first, and building this repo
without it is that work's acceptance test.
Validation is pinned
Runs are validated against a named, frozen snapshot, never "the current snapshot" — every
register a snapshot-reading phase emits encodes facts about one specific composition. A run that
observes a different snapshot_id fails before any phase executes.
Rebaselining is deliberate and has two halves. tc baseline verify proves the composition is the
one named; tc baseline approve records that someone re-read the registers asserting facts about
it. Which registers a phase owes is derived from its rule set — a register rests on a snapshot fact
exactly when a rule governing it consults an observation. The approval lives in the pin, so re-pinning
drops it: an approval is against one composition and survives no other.
Documents
doc/THE_SHAPE_OF_A_CHANGE_V0.md— when a subject is a new change request and when it is the same one re-authored, and which artifacts a governance change may amend.doc/TRANSFORMATION_COMPILER_PLAN_V1_ADDENDUM_A.md— thebook_library_mgmtdomain, its decomposition, and the change request sequence it is worked through.doc/TRANSFORMATION_COMPILER_PLAN_V1_ADDENDUM_B.md— self-hosting: why the pipeline's first governed change is itself, and what that settles. Plan V1 itself has been removed; the addenda are what survives, and a settled ruling is restated where it is needed rather than by restoring the plan.doc/REGISTER_COVERAGE_VERIFICATION.md— whether a design can state, for an artifact it amends, every fact that artifact carries. Four observed instances of one pattern: a fact the authoring path never had to state because authoring supplies it, and the amending path must state and cannot.templates/— the phase templates. These are the authority: registers, columns, controlled vocabularies and optionality are read from them, and rule sets are derived. A shape declared anywhere else is not a template.
The package family
| Package | Repository | Role |
|---|---|---|
pgc-compiler |
protocol_compiler |
declarations → compiled projections |
pgc-assembler |
snapshot_assembler |
projections → sealed snapshot |
pgc-runtime |
protocol_runtime |
snapshot → governed execution |
pgc-inspector |
snapshot_inspector |
snapshot → read-only inspection |
pgc-transformation |
transformation |
change request → protocol artifacts |
pgc-governance |
software_governance |
the governance surface and its capability implementations |
pgc-workloads |
conformance_workloads |
the workloads that make conformance observable |
pgc-domains |
business_domains |
the business domain implementations the composed snapshot binds |
pip install pgc brings in the whole family.
Installing the toolchain is one of two steps. The compiler resolves the governance surface from
PGC_PLATFORM_ROOT — fail-hard, cwd-independent, zero inference — so the declarations come from a
repository you point at, never from a wheel. A registry inside a package would be a second governance
surface competing with the repository's, and a build could then be governed by a stale copy.
git clone https://github.com/protocol-governed-computing/software_governance
export PGC_PLATFORM_ROOT=$PWD/software_governance
pgc # reports what is installed and whether the anchor resolves
PGC_BUILD_ROOT (compiled output, keeping the governance repo read-only) and PGC_DOMAIN_ROOTS
(additional domains contributing their own registry/structures) are optional.
Versioning. Two schemes, and the published version follows the second.
- Internal — each repository's
VERSIONfile, a monotonic composition ordinal. PGC versions the composition rather than each repo: they release together and the governance closure forces lockstep, so the ordinal names which composition a repo belongs to. Development happens ondev/<N>and each cycle is taggedrelease-<N>. This is not published. - Public —
PUBLIC_VERSION, tagged on every component repository. The platform is atv2.
The published version is the public one: v2 is 2.0.0. The standard the packages implement is a
separate artifact on its own track and is not this number.
The standard these packages implement is published separately: https://doi.org/10.5281/zenodo.22150616
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pgc_transformation-2.0.0.tar.gz.
File metadata
- Download URL: pgc_transformation-2.0.0.tar.gz
- Upload date:
- Size: 186.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71ddb1ca32523b8864afcfeabcccdfcfe43070f300de36585e6a711d3a1f4db5
|
|
| MD5 |
625ed85d939d4b58c4d9dc8e715c982a
|
|
| BLAKE2b-256 |
81c73445be3a6d36f673ed2f489632a96a5f1e4ed211d3d060dc2f2d93d7f6b1
|
File details
Details for the file pgc_transformation-2.0.0-py3-none-any.whl.
File metadata
- Download URL: pgc_transformation-2.0.0-py3-none-any.whl
- Upload date:
- Size: 226.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce924af3318c80cf07d27f9260d215fb735305427ab5d8728da40b8667726a31
|
|
| MD5 |
9c6d4f8e500b30afa7491a00df8ef218
|
|
| BLAKE2b-256 |
7237f620f9c50e4a8bd3c5c7697c258798b7774572b9b2ba2dd7acd9e94d2a09
|