Skip to main content
Glama
fps4

trusted-knowledge-graph

by fps4

trusted-knowledge-graph

A knowledge layer a lawyer can act on and an AI can stand on. A legal-shaped estate, a graph anchored to systems of record rather than scraped out of text, and one resolver that decides what a given person may see before any evidence is assembled — and writes down what it decided.

  SYSTEMS OF RECORD      R2RML       THE GRAPH            THE RESOLVER               WHO ASKS

  practice mgmt ─┐                 spine: matters,      1 plan  2 terms  3 route    Claude Code
  CRM            ├─► mappings/ ─►  clients, people      4 bind                      one session
  HR             ┘                 + told facts with    5 DECIDE ◄── OPA ◄── barriers.yaml
                                     their lineage      6 passages (M3)             per person,
                                                        7 compose or refuse  ◄───── over MCP
                                                              │
                                                              ▼
                                                  one hash-chained record per request

Status: M2. Two lawyers ask the same question in two Claude Code sessions; one is answered and one is refused, with the rule, its owner and the date it was set. A business word with four meanings is refused until someone says which one. And Risk & Compliance — only Risk — can ask the record who was shown what, and its asking is recorded too. There are no documents and no extraction yet: those are M3 and M4. What is here runs.

make build && make up-stores && make load && make policy   # first run
make demo        # the scenes, asked as the personas, through the resolver
make reports     # leak, glossary and audit reports from a fresh record
make verify-audit

Honesty statement

Written before the numbers, and it stays at the top.

  • No real firm, no real person, no real client, no real matter. The estate is invented and generated deterministically from config/estate.yaml. Nothing here is legal advice or a statement about any organisation.

  • This is not production experience. It is a pattern, implemented and measured.

  • Laptop scale. Around 400 matters and, later, ~2,000 documents — not 1.2 million. No throughput claim, no cost claim, no latency claim is made anywhere.

  • Identity is asserted, not federated. Each persona's MCP container holds a key and mints a short-lived assertion; the resolver verifies it. In the design this is the OAuth on-behalf-of flow against a real identity provider. This is the one place the lab is weaker than the architecture it demonstrates, and anyone who can read secrets/ can be anyone. (ADR 0011)

  • Claude is not in the barrier suite. The suite asks through the same HTTP boundary Claude uses, as each person; it does not test what a language model says about the answer. That the boundary holds is measured. That a model reports it faithfully was observed, not measured.

  • The hash chain is tamper-evident, not tamper-proof, and it cannot show that its tail was cut. make verify-audit prints the head hash so it can be held elsewhere. (ADR 0012)

  • Apache Jena Fuseki and OPA are lab choices. OPA is the component the design names; Fuseki is a real quad store rather than an embedded library. Neither is a recommendation for any particular production estate.

  • Do not expose this stack to a network. Every port binds to loopback, and the stores have no authentication because they are not reachable.

  • Authored AI-assisted, with the design record in docs/decisions/ leading the code, as in the sibling labs.

Related MCP server: lex-provenance-mcp

What M2 shows

A word is not the model's to interpret. "Active client" means four different things to four owners — a client with an open matter (the practice groups), invoiced in the last year (Finance), in the CRM with a relationship partner (BD), ever acted for (Risk, because a conflict check needs former clients). Four numbers. resolve_term("active client") returns all four with their owners and counts; a question that names the term without choosing a reading is refused at the router, with the readings listed back. Asked through Claude Code, the model does what the refusal tells it: shows the readings and asks which one. (ADR 0015)

Words fill slots, not guesses. "AIFM" resolves to the fund-manager client type; "AFM investigation" to a regulatory investigation in the Netherlands — with the caveat, in its definition, that the lab records jurisdiction, not the regulator. An answer records which glossary terms it rests on, and their owners.

Reuse by mapping. The firm's practice areas and matter types are mapped to SALI LMSS with SKOS relations that say how close each is — none is an exact match. The subset is imported from a pinned commit, and the namespace was read from the release rather than assumed: it is http://lmss.sali.org/, not the https://sali.org/ one would guess. (ADR 0016, reports/glossary.md)

Every answer says how it was routed. graph · index · hybrid · refuse, with the reason. Until the index exists (M3), a question that needs passages is refused and says so. (ADR 0017)

The record has its own access model. OPA decides who may read it, from a rule in barriers.yaml: Risk & Compliance, nobody else. Risk resolves the salted hashes and answers the three questions — who has ever been shown anything derived from M-2022-0117, what did Sanne see, why was that trace refused — and gets the same grounds Sanne was shown at the time, from the same record. Risk sees no matter content, and Risk's own reads go into the same chain. (ADR 0018, reports/audit.md)

What M2 found. Refusing an aggregate over a set you cannot fully see is right for "who has the most AFM experience". For a firm-wide count it means nobody gets an answer: every lawyer in the lab is walled from something the Finance and Risk readings of "active client" count, so both are refused for all three of them. In a real firm, with hundreds of need-to-know matters, every firm-wide metric would be. The options and their side channels are in ADR 0019 — an open decision, for the firm, not the lab.

What M1 shows

The same question, two people. Mara, a partner, asks whether the firm has advised a Dutch fund manager on an AFM investigation since 2021, who led it and what the outcome was. She gets five matters, each citing the system it came from — two outcomes confirmed, one unconfirmed and saying so, and two matters with no outcome, because none was recorded and the answer does not invent one. Sanne, screened from one of those matters, asks the identical question and gets four, and is told one matter and one derived fact were withheld under rule B-03, with its owner and the date it was set.

Three refusals, and why each is the right one.

Sanne asks

Outcome

Why

Who led M-2022-0117?

refused

direct: the matter is behind B-03

Who has led the most AFM investigations?

refused-aggregate

a count over a set she cannot see in full is wrong in a way she could not detect

What expertise is recorded for Mara?

one fact of two

the other names no matter — it was derived from one, and lineage decides

The third is the case the design exists for. The withheld fact is about a person, not a matter; only its lineage, over prov:wasDerivedFrom+, connects it to the restricted matter — and that is enough.

Decide, then retrieve. The resolver asks the graph which matters and derived graphs a question would reach, asks OPA which of those this person may see, and only then runs the query — bound to the permitted set. The query that produces evidence cannot name a denied matter. Nothing is filtered afterwards. (ADR 0009)

One rule file, checked against the firm's own records. config/barriers.yaml is the only place an access rule is written. It compiles to the data OPA evaluates, and the compiler refuses to write a policy when a rule and the practice-management system's restriction records disagree. Insiders are referenced from the matter team, never copied. (ADR 0007)

Disclosure is a policy decision with an owner. Whether a screened person is told that something was withheld is disclosure: in barriers.yaml — both modes are implemented, and the caller cannot choose. A refusal is itself a one-bit disclosure; that is stated, not discovered. (ADR 0010)

The record. Every request writes one line to audit/decisions.jsonl, once, at completion, answered or refused, chained by hash. The audit log of a barrier system is itself confidential: a record saying Sanne was denied M-2022-0117 would tell its reader what the barrier hides. So denied identifiers are salted hashes in every field — including the slot she typed — and free text is not logged at all. explain(trace) reads the stored record: the live explanation and the later one are the same object. (ADR 0013)

The boundary. One MCP server per person, started as that person, holding only that person's key, on a network where the resolver is the only other service. No tool takes a persona. There is no document() tool. passages() needs the permit ask() issued, to the same person — the lock is fitted before the index it guards exists.

The numbers

From reports/leak.md, generated by make leak:

questions asked — every rule × every persona × direct / second hop / lineage / aggregate, plus the glossary path

130

… where the persona is denied the matter

56

leaked

0

wrong refusals, including over-refusals of matters the persona may see

0

doors behaving — the permit, and the record only Risk may read

16 / 16

audit records checked for a denied identifier in clear, including Risk's own reads

134 — 0 found

Who should be denied is computed from barriers.yaml and the systems of record directly, bypassing both the policy compiler and OPA. That independence was checked by breaking it: with Sanne's screen removed from the compiled policy only, the suite reported six leaks, two wrong refusals and fourteen clear-text identifiers in the log — a check run by hand, not a committed test. An earlier version read the compiled policy for its expectations — and passed the tampered one, because it agreed with itself.

What the first Claude Code session found. A persona's description, returned by whoami(), named the matter she is screened from. The suite had never looked at whoami(). It does now, and the description no longer does.

From M0, still true

  • The systems of record are a database, not CSV exports, so the spine is built by declarative R2RML over live tables, read through a role that cannot write back.

  • SHACL is the load contract. A load that violates the shapes does not land — including the rule that no literal exceeds 500 characters, because the graph holds assertions and identifiers, never document content. From M1 the shapes also refuse a fact without a source, confidence and review state, and a derived graph without lineage.

  • The model does not write SPARQL. Questions are templates bound to competency questions, and from M1 every template declares every graph it touches.

  • The mess is in the data, on purpose: the same organisation spelled differently in the practice-management system and the CRM, and colleagues sharing a family name.

Running it on a Docker host

The lab is deployed by hand to a Docker host, and nothing on it is exposed: every port binds to the host's loopback. There is no CI; the gate is a command.

ssh host 'git clone https://github.com/fps4/trusted-knowledge-graph && cd trusted-knowledge-graph \
  && make build && make up-stores && make load && make policy'
ssh -L 8480:127.0.0.1:8480 host      # the resolver, if you want it from here

Claude Code stays on your machine. The MCP container — and the persona's key — stay on the host, reached over ssh:

make mcp-configs HOST=host           # writes mcp/<persona>.json locally
claude --strict-mcp-config --mcp-config mcp/sanne.json

Using it from Claude Code

make init writes one MCP config per person, for a stack on the same machine. One session, one person:

claude --strict-mcp-config --mcp-config mcp/sanne.json

A single .mcp.json listing everyone would give one session every person's tools at once, which is exactly the boundary the demo is about — so there isn't one.

Layout

config/estate.yaml

the whole synthetic firm, including the deliberate mess

config/barriers.yaml

the only place an access rule is written — owner, dates, disclosure

config/people.yaml

who can ask; what they are comes from HR, not from here

config/asserted.yaml

facts told by a named partner, each with its lineage

config/audit.yaml

what the record keeps, hashes, omits, and for how long

config/glossary.yaml

business terms, owners, readings, what an ambiguous term gets

config/sali-mapping.yaml

the firm's vocabularies against SALI LMSS, pinned

config/relations.yaml

who owns each relation, and whether it states the present or a date

vocab/

the imported SALI subset, with provenance — docs/sources.md is the register

sql/, mappings/

the systems of record, and R2RML over them

ontology/

a small OWL profile, and the shapes that gate every load

policy/access.rego

the policy — hand-written, with opa test cases

build/opa/data.json

the policy's data, compiled from barriers.yaml — generated

src/tkg/resolver/

the seven steps, and the HTTP API they sit behind

src/tkg/access/

compiler, lineage, OPA client, permit

src/tkg/audit/

the chained writer, salted hashes, verification

src/tkg/mcp/

one MCP server per person

src/tkg/semantic/

templates, the glossary resolver, the router

reports/

leak.md, glossary.md, audit.md — generated, never typed

docs/decisions/

nineteen ADRs, written before the code they justify — one still open

MIT.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    A self-hostable MCP permissions gateway for legal-tech systems that connects legal apps once and exposes only the tools each team member should use, enforcing a thin policy and audit layer over vendor APIs.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    A read-only MCP connector for searching, fetching, and citing provenance-tracked legal corpora with verifiable content hashes.
    Apache 2.0
  • A
    license
    Not graded
    quality
    C
    maintenance
    Tamper-evident audit trail MCP server for EU AI Act and GDPR compliance. It enables logging events with automatic PII scanning, compliance checks, and right-to-erasure support.
    Apache 2.0