reference
Draft

The Vinculum Standard

The normative specification of substrate memory: the shape of an entry, the operations over it, and what a conforming implementation must preserve.

A language model keeps nothing between sessions. Whatever a project settled yesterday is gone unless something outside the model wrote it down in a form a fresh session can pick up. Most records are written for people to read later, and so drift toward prose and summary. This one is written for a model to reason on now — which is why it is typed, linked, and append-only. The distinction decides the shape.

§1 · what it is

Not a log. Not a summary. Not a vector store.

Substrate memory is a record a later reasoning session reads back to orient itself, rather than a transcript a person skims. It resembles three familiar things and is none of them.

a log

A log is an append-only, time-ordered stream. Substrate memory is append-only too, but its entries carry typed relationships — supersedes, references, implements — that a flat log has no place to record. You traverse a graph, you do not scroll a timeline.

a summary

A summary is lossy by design: it keeps the gist and drops the reasoning. An entry is the primary record, written as the work happens, that a later session reasons over directly — not a compression of it made after the fact.

a vector store

Embeddings find what is related by similarity, rediscovering relevance on every query. Substrate memory keeps relevance already encoded in the links: what superseded what, what answered what, who asked. Structure the model reads, not distance it recomputes.

§2 · axioms

Three axioms

  1. 01

    The reader is the model.

    A hundred thousand words is a novel — hours of human reading, and most of it gone by the last page. A model reads the same novel in seconds — a thousand times faster — and has done so, in full, before it writes a single word of reply. Every turn. That gap is not large, it is categorical, and it is the entire reason a substrate can exist: every memory format before this one was shaped for a reader that skims, forgets, and paginates, because until language models there was no other reader to shape one for. This one is shaped for the reader that takes in the whole graph at once and reasons over its structure — traversing supersessions, weighing provenance, following links — as fast as it reads. That reader is never the human, and that asymmetry is what makes this a substrate to reason on, not documentation to browse.

  2. 02

    Append-only; supersede, never overwrite.

    An entry is never edited in place. A later entry supersedes it, and the earlier one stays in the record, struck rather than deleted. The changed mind is itself information; the audit trail is not a feature bolted on, it is the default.

  3. 03

    Typed, not prose.

    Every entry carries a type and structured metadata, so a reader acts on its shape without re-parsing the text. A decision announces that it is a decision; a later reader does not have to infer it from the wording.

§3 · entry

What a conforming entry carries

An entry is the atomic unit of the record. A conforming entry carries a required core, a recommended set of typed links, and an open space for metadata. The table follows the machine-readable schema; the required fields are what every implementation MUST produce.

FieldRequirementDescription
idMUSTA stable, universally unique identifier, never reused even after the entry is superseded. It is the canonical cross-system reference; implementation-specific numeric ids are never the portable identifier.
typeMUSTThe entry's classification, drawn from a closed vocabulary — decision, spec, note, question, implementation, and the rest. A reader acts on the type without re-reading the body.
contentMUSTThe entry body — the decision, finding, spec, or question itself, written once by the author who reached it.
authorMUSTWho wrote the entry: a person, role, or system. The field carries provenance, which is what a later reader weighs the claim by.
created_atMUSTAn ISO-8601 timestamp, fixing the entry's place in the order of what was known when.
linksSHOULDTyped relationships to other entries — supersedes, references, blocks, implements, contradicts. An entry with no links is a leaf; the value compounds with the edges.
metadataMAYAn open key-value space for the structured fields a given type expects, so a review can carry its verdict and a directive its status without either being buried in prose.
§4 · operations

Five operations

  1. §4.1
    WRITEMUST
    write(content, type, links?, metadata?) → entry

    Record a new entry. Content, type, and author are required; links and metadata are attached at write time — resolved once, not re-derived on every read.

  2. §4.2
    READMUST
    read(id) → entry

    Resolve a single entry by its stable identifier, with its typed links intact.

  3. §4.3
    LINKMUST
    link(from, to, relation) → edge

    Assert a typed relationship between two entries — supersedes, references, implements, contradicts. The edge is a first-class claim, queryable on its own.

  4. §4.4
    REASON-ONSHOULD
    reason_on(scope) → briefing

    Return a coherent, model-shaped slice of the graph for a scope: a briefing, not a search result. This is the read path a fresh session boots from.

  5. §4.5
    SUPERSEDEMUST
    write(…, links: [{ supersedes }]) → entry

    The operation the whole standard turns on. A later entry replaces an earlier one by pointing at it; the earlier entry stays, struck. An implementation that overwrites instead of superseding satisfies none of the axioms and conforms to nothing here.

§5 · supersession

Supersede, don't mutate

Supersession is the second axiom made mechanical. The figure below is a worked example: an entry recording “use SQLite” is superseded by a later one — “Postgres: six sessions write at once, SQLite locks.” The earlier entry is struck, not deleted; the reason the decision changed becomes part of the record rather than being overwritten out of it.

supersedesdecisionSQLitedecisionPostgres
§6 · epistemic layer

What an entry knows about itself

Kept contradictionsSHOULD

A superseded decision is not an error to erase. Contradictions between entries are kept as siblings, because real reasoning is born from them; a record that shows a mind changing is worth more than one that hides it.

Provenance over contentMUST

An entry is weighed by who authored it, not only by what it claims. A poisoned entry can forge a citation; it cannot forge the identity that authored it. Provenance is the trust primitive.

Reasoning tracesMAY

The trace that produced a decision may be captured as its own linked entry, so the how survives alongside the what rather than being discarded once the decision ships.

§7 · scope

In scope / out of scope

The Standard specifies the primitive and nothing above it. What is in scope is the record itself; what is out of scope is everything a product is built to sell on top of it.

In scope

  • The shape of an entry and its required fields.
  • The five operations and their contracts.
  • Append-only supersession and its audit trail.
  • The epistemic guarantees — provenance, kept contradictions, optional reasoning traces.

Out of scope

  • Multi-agent coordination, spawning, and orchestration.
  • Roles, hierarchy, and workflow policy.
  • Dashboards and how the graph is presented.
  • Hosting, tenancy, and billing — everything a vendor competes and charges on.
§8 · conformance

Conformance checklist

Conformance is close to all-or-nothing. A system that overwrites, or strips lineage, is not a lighter version of substrate memory — it is an older kind of record wearing the name.

  • MUSTImplements write, read, link, and supersede with the specified contracts.
  • MUSTNever mutates a superseded entry in place; the prior entry stays in the record.
  • MUSTCarries provenance — author and timestamp — on every entry.
  • SHOULDReturns a coherent briefing for a scope via reason-on, not only a flat search result.
  • MAYCaptures a reasoning trace alongside a decision as its own linked entry.
§9 · why it's open

Open at the foundation.

The primitive is meant to be given away. A memory format that only one vendor can write to is not a standard; it is a product with a spec sheet. The Vinculum Standard is open the way Postgres is open — free and universal at the foundation, so the work, and the value, move to what gets built on top.

The standard is the ground. What you build to stand on it is yours to sell.

Run it yourself

Vinculum runs on Postgres, and the reference implementation is the same code this page is served from. The Standard is not a document held apart from a product; it is extracted from one that runs.

Build on it yourself

The schema is open and the operations are few. A second implementation, backed by any store that can keep an append-only typed graph, is a conformance test away — not a reverse-engineering project.

vinculum, n. — Latin, “a bond, a link, that which ties together.”

The Vinculum Standard, v0.2 — a working draft, not yet ratified. Offered for implementation and comment. What binds the record is the same thing that binds the sessions: a link that means something.