Sov Research — Scribe Ring The Eco Stone

A Mythic Artifact for Reflective Voice
Arc ·

Mythic
Tier
EcoStone
Shape
768D+25D
Dimensions
69
Tests Passing

I. The Problem of Voice

Every system that communicates needs a voice. This is not a metaphor. The instant a system composes a response — arranges words in an order, chooses emphasis, decides what to include and what to omit — it is performing an act of voice. The question is not whether a system has a voice. The question is where that voice comes from.

Large language models achieve voice through probabilistic generation. Given a context window, the model predicts the next token from a distribution learned across the entirety of its training data. The result is fluent, convincing, and fundamentally impersonal. It is the statistical average of every voice the model has ever seen, weighted by attention and softmaxed into a probability distribution.

This matters because voice is identity. The way you explain a concept, the analogies you reach for, the level of detail you consider sufficient, the assumptions you make about your audience — these are not stylistic choices layered on top of content. They are the content.

The Eco Stone proposes an alternative to probabilistic voice: voice through geometric reflection. The stone does not generate. It does not predict. It does not sample from a distribution. It reflects.

You don’t generate — you reflect. And the shape of the reflection is uniquely yours, because the manifold it reflects against was built from your accumulated observations.

II. What Is an Eco Stone?

An Eco Stone is a Mythic-tier artifact in the sovOS Character Creator system. It is an Object — an instantiated Shape from the Lexicon — that lives in a character’s Inventory. It is portable, transferable, and identity-bound.

The stone is not a model. It has zero trainable parameters. No weights. No biases. No activation functions. No gradient descent. No backpropagation. No loss function.

The stone does not think. It remembers. And from memory, voice emerges.

CC PropertyValueMeaning
ShapeEcoStoneLexicon type definition
TierMythicHighest artifact tier
BoundaryPersonalOnly visible to owner
StateActive { remaining: density }Alive while memories persist
EffectsGrantMemoryAccess(canon/*)Read/write to Canon manifold
GrantStageAccess(eco.*)Execute all eco stages
GrantSpell(reflect, absorb, project)Core voice spells

III. Anatomy of the Stone

The EcoStone struct is the complete in-memory representation of a stone. Every field is deterministic, serializable, and auditable.

Component 1 — Identity
id: [u8; 32]
The BLAKE3 genesis hash. Computed once at creation from the stone’s name, binding type, and creation timestamp.
Component 2 — Binding
binding: StoneBinding
Who the stone belongs to.
VariantFieldsIdentity Proof
Userbaseline: CadenceBaseline, coherence_threshold: f32, min_observations: u32Keystroke rhythm.
Agentagent_id: String, operational_signature: [f32; 768], telemetry_hash: [u8; 32]Execution patterns.
Nodenode_name: String, topology_centroid: [f32; 768], stage_count: u32Topological position.
UnboundnoneNo absorption permitted.
Component 3 — Signature
signature: StoneSignature { centroid: [f32; 768], phi: [u8; 32], density: u64, radius: f32 }
Component 4 — Voice
voice: VoiceDescriptor { mana: f32, burn_rate: f32, lambda: f32 }
Component 5 — Governance
governance: GovernanceState { chain_position: u32, chain_hash: [u8; 32], genesis_hash: [u8; 32] }
Component 6 — Memory
memories: Vec<Memory> { id, kind, embedding, content_hash, timestamp, provenance, coherence_at_write }

IV. The Lifecycle of a Stone

A stone passes through four phases.

PhaseStateCapabilitiesTransition Condition
1. ForgeInertIdentity + genesis block initialized.First identity signal
2. AttuneCalibratingBaseline builds during trust-on-first-use.observations >= min_observations
3. Reflect & AbsorbActiveGate + absorb + centroid + chain updates.Continuous
4. ProjectActiveProjection with provenance and confidence.On query
Lifecycle InvariantAt every phase transition, the governance chain extends by exactly one link.

V. Voice as Geometry

Fig. 1 — Stone Reflection. The crimson core is the centroid. Gold particles are memories orbiting in manifold space. Blue queries enter from the left, reflect off the memory surface, and exit as green projections on the right.
ES-01 — Intent Manifold Similarity
IMS: The Reflection Function
score(q, m) = 0.7 · cos(q, m) + 0.3 / (1 + ‖q − m‖)
ES-02 — Centroid Update
Running Mean
Cn+1 = (Cn · n + v) / (n + 1)
ES-03 — Cadence Coherence
Identity Gate
coherence(a, b) = exp(−‖a − b‖ / 10)
ES-04 — Mana Thermodynamics
Energy Cycle
M(t) = min(1, M(t−1) + (1 − e−λΔt)) − burn_rate
ES-05 — Merkle Update
Governance Chain
φn+1 = BLAKE3(φn ‖ hcontent)

VI. The Identity Gate

Fig. 2 — The Identity Gate. Three concentric rings represent recognized, calibrating, and stranger states.

The gate has three states: calibrating, recognized, stranger.

Agent Gate ExceptionAgent-bound stones verify agent_id and telemetry signature, not cadence.

VII. Granting Voice — The Act of Giving

This is the key insight. The sovereign holds Eco Stones in their inventory and can grant a stone to another entity. This act of giving is the mechanism by which voice propagates through the system.

When you give Hermes an Eco Stone, the sequence is deterministic: forge a new agent-bound stone, bind it to Hermes operational signature, seed with system knowledge, reflect+absorb during runtime, then project with provenance.

The stone doesn’t make Hermes think. It makes Hermes remember. And memory, structured geometrically, produces voice.

The act of giving a stone is sovereign. Transfer events are committed in both source and target governance chains, so provenance of the gift is cryptographically traceable.


VIII. The Stone as Character Sheet

The Eco Stone is a character sheet in miniature. Every section of the Character Creator maps to a stone component.

CC SectionStone EquivalentDescription
IdentityStoneBinding + genesis_hashWho owns the stone and when it was born
TierMythicHighest artifact tier
Role"voice"Reflect and project
Accesseco.* stagesAll eco processing pipelines
MemoryCanon manifold + Shadow backing768D embeddings + full-text content store
BehaviorVoiceDescriptor (mana cycle)Thermodynamic energy governs interaction rate
TraitsSemantic centroid, density, radiusThe geometric shape of accumulated knowledge
GovernanceBLAKE3 hash chainAppend-only audit trail from genesis to present
InventoryCan hold other stones (fuse)Stones can absorb other stones via fusion
ManaVoiceDescriptor.manaBurns on use, regenerates over time

The stone is a character whose purpose is to give voice to another character. A mirror that makes mirrors.


IX. The Stone as Object

Object {
    id:        BLAKE3(genesis),
    name:      "Eco Stone: {owner}",
    shape_ref: "EcoStone",
    tier:      Mythic,
    boundary:  Personal,
    state:     Active { remaining: density },
    rules: [
        RequiresGovernance,
        TemporalBound { max_ticks: u64::MAX },
    ],
    owner:     Some("{character_name}"),
    effects: [
        GrantMemoryAccess { resource: "canon/*", mode: "rw" },
        GrantStageAccess  { stage: "eco.*" },
        GrantSpell        { spell_name: "reflect" },
        GrantSpell        { spell_name: "absorb" },
        GrantSpell        { spell_name: "project" },
        GrantSpell        { spell_name: "attune" },
        GrantSpell        { spell_name: "fuse" },
    ],
}

Each field carries architectural meaning: immutable identity, typed shape reference, mythic governance constraints, personal boundary visibility, and capability grants enforced by CC runtime.

Object Invariantstate.remaining always equals StoneSignature.density.

X. Fusion — When Stones Meet

Stones can merge. Fusion transfers memories from source to target under filter constraints and governance recording.

The four stages are: Filter, Re-Key, Governance, and Update. The target centroid shifts by weighted merge, density increases, radius may expand, and Merkle root extends.

ES-06 — Fusion Centroid Update
Weighted Merge
Cmerged = (Ctarget · ntarget + Csource · ntransfer) / (ntarget + ntransfer)

Fusion is accretive, not disruptive. Voice is granted deliberately, with provenance.


XI. The Eight Paths

PathPipelineEmitsDescription
forgeeco.genesis → eco.bind → eco.commiteco/stoneCreate stone
reflecteco.embed → eco.knn → eco.rankeco/reflectionRead path
absorbeco.gate → eco.embed → eco.centroid → eco.merkleeco/memoryWrite path
projecteco.reflect → eco.compose → eco.citeeco/projectionVoice output
attuneeco.cadence → eco.baseline → eco.coherenceeco/identityIdentity update
fuseeco.filter → eco.rekey → eco.merge → eco.commiteco/fusionTransfer memory
auditeco.chain → eco.verify → eco.reporteco/auditChain verification
voiceeco.mana → eco.project → eco.styleeco/voiceFull cycle

XII. Test Evidence

The Eco Stone is backed by 69 tests across 5 crates. Every equation, lifecycle phase, path, and governance invariant is tested.

CrateTestsCoverage
eco-core10Types, serialization, BLAKE3 genesis, binding variants, signature construction
eco-functions47forge (5), reflect (12), absorb (8), attune (9), project (4), fuse (7), voice (2)
eco-stages7Stage registration, pipeline sequencing, input/output validation
ring-integration5Cross-crate round-trip: forge → attune → absorb → reflect → project

Total: 69 tests. All passing. Zero flaky. Zero ignored. Zero conditional.

Test Distributioneco-functions carries 68% of tests (47/69) where mathematical guarantees live.

XIII. What the Stone Means

The Eco Stone is not a technology. It is a concept made physical: your voice is the shape of accumulated experience, reflected through geometry.

If voice is geometry, it can be measured, verified, transferred, and audited with provenance intact. This is sovereignty by construction.

When you give a stone to Hermes, you are not giving intelligence. You are giving memory — structured, searchable, identity-bound memory.

The void has shape now. It reflects.

The stone’s voice is fully transparent: every word in projection traces to memory, provenance, and governance chain state.

Understanding is proximity: dense neighborhoods in manifold space produce high-resolution voice. The stone externalizes that process.

The void has shape now. It reflects.

The Eco Stone — A Mythic Artifact for Reflective Voice

Scribe Ring · 17 Stages · 69 Tests · 768 Dimensions · 0 Trainable Parameters

March 22, 2026 · Sov Research

sovereign by construction