Development
Consensus, authority, and what is still experimental
The frontier — everything here is explicitly tagged, and unfinished consensus is never shown as operational.
Consensus and authority roadmap
Caveat: the multi-node harness stalls (height-retry deadlock).
Protocol-core types landed; liveness closure is design-only.
Enforcement is test-gated; no issuance path exists yet.
99b9bbc (height-retry gate) and 85ddbfb (issuance / authority-gossip) — isolated, never presented as landed.
Consensus is one continuous C7.x story: deterministic sortition selects witness panels, panels ratify blocks, and (in design) height/view consensus and authority certificates carry it forward. The live multi-node harness does not yet pass — the height-retry deadlock stalls a run at height 9. Unit tests are green; end-to-end liveness is not.
C7.2.2-design.md, C7.2.3-design.md, C7.3-authority-spec.md
WIP branches WIP
Two isolated branches hold work that must never be presented as landed:
wip/c7.2.2-step6-live-gate(99b9bbc) — preserves the live harness exposing the height-retry deadlock.wip/c7.3-issuance-authority-gossip(85ddbfb) — issuance primitives and authority gossip, unratified.
Cells CONCEPTUAL
src/cell/mod.rs holds the Prototype Cell data model — Cell, CellMember,
CellRelationship, Experiment, ExperimentReplication, EvidenceRecord, Reflection, and
KnowledgeArtifact. These are serializable data structures only: no logic, no consensus or
economics wiring. Cells are a design object, not an operational subsystem.
src/cell/mod.rs
Specifications
C7.2.3-design.md— durable height/view consensus SPECIFIEDC7.3-authority-spec.md— authority certificates and issuance SPECIFIEDdocs/derivation-model-spec.md— deterministic panel derivationdocs/bootstrap-confession-spec.md— bootstrap membership / era transitiondocs/era-two-design.md— ratification-block epoch designdocs/taxonomy-v2.md— STATE/JUDGMENT claim taxonomy
~/work-mesh-scaling (engine repo)
Conceptual work CONCEPTUAL
These are Institute-layer concepts with no engine correspondence at the current checkpoint. They are not hidden, but they are not operational:
- Shared Mycelium mechanisms — Thermal Handshake, Soil Consensus, Spores, Resonance Channels, CRDT forking. Institute
/emergence/mycelium(now labeled “Proposed”). - Standing / Attention — as distinct governance/economics primitives. Institute protocol chapters 7 and 11.
- Adversarial consensus (Proposer / Opposer / Synthesizer loop). Institute
/emergence/architecture— the engine uses sortition + ratification, not that loop.