All 31 files from ideas/passepartout-economics/ promoted to ideas/ root. - Subfolder's passepartout-economics.org (42-line index) renamed to triad-index.org to avoid collision with root-level full doc - index.org removed (redundant — triad-index.org replaces it) - Root-level passepartout-economics.org: stripped file:passepartout-economics/ prefix from all cross-references (now simple file:foo.org links) - compliance-framework-mapping.org: same prefix cleanup - All internal file: links within the economics docs already used simple names (no prefix) — they resolve correctly from ideas/ root
21 lines
1.7 KiB
Org Mode
21 lines
1.7 KiB
Org Mode
:PROPERTIES:
|
|
:ID: 29e4dbf3-cf19-589c-8b14-389e8a39d564
|
|
:END:
|
|
#+title: Upgrade and Distribution Lifecycle
|
|
#+filetags: :passepartout:economics:upgrade:distribution:ontology:
|
|
|
|
Once instances diverge in both code and knowledge, naive git pull breaks things. Passepartout's architecture already has the primitives for safe upgrades:
|
|
|
|
- **Ontology versioning:** every fact stores the ontology version at assertion. On upgrade, facts with old versions are flagged for re-verification.
|
|
- **Degradation, not crash:** if an upgrade breaks the fact store, the system degrades to the pre-macro state (hash-table fallback, text-scan fallback). Still works — just proves less.
|
|
- **Reversible upgrades (Phase 0 undo):** every upgrade produces a Merkle snapshot before applying.
|
|
- **Delta distribution:** upgrades delivered as diffs against the current ontology version. Migration script runs automatically.
|
|
|
|
**The upgrade is verified by the upgraded system before committing.** The distributor ships the new gate vector; ACL2 reports which rules are compatible and which need review. The operator reviews only the incompatible subset. This verified upgrade process creates [[file:infrastructure-lock-in.org][infrastructure lock-in]] — switching costs are high when all knowledge is deeply coupled to the ontology version.
|
|
|
|
**Business model for upgrades:**
|
|
- Code upgrades: free (AGPL)
|
|
- Migration scripts: subscription. The verified migration path from current ontology version to new one.
|
|
- [[file:domain-gate-packages.org][Domain knowledge package upgrades]]: subscription. When HIPAA updates, the healthcare package updates.
|
|
- [[file:verification-appliance.org][Verification appliance firmware]]: bundled with hardware. Signed and verified against hardware root of trust.
|