Matryca Plumber
I gave an AI agent access to my notes. It corrupted them. I built Matryca Plumber so that never happens again.
Local-first agentic memory and maintenance for Logseq OG. Matryca Plumber gives humans and agents one safe, structured interface to a Markdown knowledge graph—without turning an opaque database or a model provider into the owner of that knowledge.

Quick start
Requires Python 3.12 or newer and a Logseq OG graph.
# Run the UI without installing anything permanently
uvx matryca-plumber status
Open http://127.0.0.1:8500, select a cloned Logseq graph, review the pre-flight checks, and start the engine when ready.
# Optional: install the command and its background service
uv tool install matryca-plumber
matryca service install
Start with a clone of your graph, especially before enabling writes or applying an import. See the operator contract, security policy, and support guide.
Why Matryca Plumber
Most agent memory systems ask you to trust an internal store. Matryca Plumber starts from the opposite premise: your human-readable Logseq Markdown remains the system of record.
| Principle | What it means in practice |
|---|---|
| Human-owned memory | Pages and blocks stay readable, editable, portable Markdown. |
| Safe agent access | CLI and MCP expose structured graph operations instead of ad hoc file edits. |
| Conflict-aware writes | Optimistic concurrency control and page locks reject stale updates rather than silently overwrite human work. |
| Fast, disposable reads | The Shadow DB accelerates search and subtree reads, but can be rebuilt and never becomes authoritative. |
| Useful Read Only mode | Agents can benefit from an external Shadow cache while graph-local mutation remains blocked. |
| Local-first operation | The graph stays on disk; local inference works without a cloud API key. |
This makes Matryca Plumber more than a vector store or chat-history database. It is a controlled memory plane where humans keep custody of knowledge and agents receive the structure, speed, and safety they need to work with it.
A different model of agentic memory
Mem0 and many other service-centric memory layers solve an important problem: they extract, store, and retrieve scoped memories so an application can personalize an agent across sessions. Matryca Plumber solves a different problem: how humans and agents can safely maintain the same durable body of knowledge.
| Question | Service-centric memory, such as Mem0 | Matryca Plumber |
|---|---|---|
| What is the primary memory object? | An extracted fact, event, or memory record | A human-readable Logseq page or addressable block |
| Where does truth live? | In the memory layer's configured stores | In the user's Markdown graph |
| How does a human participate? | Primarily through the application, API, or management surface | Directly in the same pages and blocks used by agents |
| How is context retrieved? | Memory search and ranking over the service's stores | Structured graph reads, BM25, and an optional derived Shadow DB |
| How is knowledge changed? | Memory extraction and add/update/delete operations | Parser-aware block mutation guarded by OCC and write policy |
| What is the design goal? | Persistent, scoped recall for an application or agent | A shared cognitive workspace owned by the human |
Why block granularity matters
Logseq's outliner gives Matryca Plumber a natural unit of memory that is both
machine-addressable and human-readable. A block can have a durable id:: UUID,
properties, children, links, and a precise place in the graph.
When an agent already knows that anchor, Matryca can:
- retrieve only the block and its descendants instead of placing the entire page in the model's context;
- narrow the result again to one heading, or bound a Shadow query by depth, node count, and output bytes;
- append beneath a specific parent or edit only the permitted property lines inside that block's span;
- preserve the surrounding page and reject a stale write through dry-run, page locks, and OCC.
This reduces prompt tokens and irrelevant context, makes retrieval more focused, and shrinks the area in which an agent can make a mistaken edit. A Markdown fallback may still read the page locally to locate the block, and an atomic commit persists the page file, but the model does not need to ingest or regenerate the whole document.
Page-centric Markdown integrations often lack this boundary and must provide a much larger document to the model for a small read or update. Not every agent-memory system is page-centric—Mem0 also stores granular extracted memories. Matryca's distinction is that its granular unit remains the same canonical block the human reads and edits, not a separate derived memory record. See the targeted subtree contract for the exact read surface.
The decisive distinction is not merely local versus cloud, or Markdown versus a database. It is which representation remains authoritative. Matryca Plumber uses a database where it is valuable—for fast derived reads—without moving ownership away from the documents a human can inspect, edit, link, version, and keep independently of any agent.
This is an architectural comparison, not a claim that one category replaces every other. Mem0 supports both hosted and self-hosted deployments and is optimized for a different integration boundary. For the longer argument and the design philosophy behind Matryca Plumber, read The Agentic Memory Dilemma: Mem0 vs. Matryca Plumber and the Future of Human-AI Collaboration.
What it provides
- Agent-native CLI and MCP for pages, blocks, search, context, ingestion, and guarded mutation.
- Derived Shadow DB with SQLite FTS5 and subtree reads, external cache isolation, health checks, fallback, and quarantine behavior.
- Background maintenance for semantic indexing, link hygiene, entity consolidation, and other explicitly enabled operations.
- Logseq-aware writes through the parser and one shared OCC-protected mutation plane.
- Sovereign UI for setup, trust controls, health, and runtime telemetry.
- Tana to Logseq OG migration, streamed and dry-run by default.
For the complete and current behavior, use the documentation paths rather than this overview.
Choose how much gardening you want
Matryca separates the permission to write from the kind of maintenance it may perform. Strict Read Only is the hard boundary: while it is enabled, every graph-writing control is unavailable. Reads still work, and Shadow DB Acceleration may independently maintain its disposable cache outside the Logseq graph.
When writes are allowed, the traffic-light levels let you choose how actively Matryca Plumber tends the graph:
| Level | Features you can activate | What may change |
|---|---|---|
| 🟢 Safe Mode | Semantic Routing; Context Compression; Entity Consolidation; Property Hygiene; MARPA Framework | Routing caches and compressed context do not touch the graph. The other controls may add alias::, inferred properties, classification metadata, or validation side-sections—never rewrite original bullet prose. |
| 🟡 Augmented Mode | Heal Dangling Links; Backpropagate Links | Adds isolated seed pages or backlink-context sections while preserving original bullets. |
| 🔴 Surgeon Mode | Inline Semantic Corrections; Auto-Split Dense Blocks | May edit original bullet text or restructure dense subtrees. Enable explicitly and test on a cloned graph first. |
This means Matryca can remain a fast, read-only memory layer, or become an opt-in knowledge gardener that consolidates entities, improves properties, repairs missing link targets, and strengthens connections between notes. Start with Strict Read Only, then enable only the smallest gardening level that matches your needs.
See the architecture trust levels and Shadow DB operator contract for the exact boundaries.
How it works
flowchart LR
Human["Human in Logseq"] <--> Markdown[("Logseq Markdown\nsystem of record")]
Agents["Agents"] --> Access["CLI + MCP"]
UI["Sovereign UI"] --> Runtime["Maintenance runtime"]
Access --> ReadPlane["Structured read plane"]
Access --> WritePlane["OCC-protected write plane"]
Runtime --> ReadPlane
Runtime --> WritePlane
ReadPlane --> Shadow[("External Shadow DB\ndisposable cache")]
ReadPlane --> Markdown
WritePlane --> Parser["Logseq-aware parser"]
Parser --> Markdown
Markdown -. "rebuild / reconcile" .-> Shadow
The read and write paths have deliberately different authority:
- Reads may use the Shadow DB when it is enabled, healthy, and fresh; otherwise they fall back to Markdown-backed indexes.
- Writes always pass through the shared mutation plane and parser. Shadow maintenance cannot roll back an authoritative Markdown write.
- Strict Read Only blocks graph-local mutation while permitting validated external derived-cache writes.
Current defaults and exact fallback semantics live in the canonical Shadow DB operator contract.
Common workflows
Give an agent structured graph access
uvx matryca-plumber --json read page "My Project"
uvx matryca-plumber context load "My Project"
Agent hosts should start with llms.txt. MCP is disabled until explicitly
trusted and enabled by the operator.
Import a Tana workspace
export LOGSEQ_GRAPH_PATH=/path/to/a/cloned/logseq/graph
# Inspect first; no graph writes by default
matryca import tana --file ~/Downloads/workspace.json
# Apply only after reviewing the dry-run report
matryca import tana --file ~/Downloads/workspace.json --apply
See the Tana import contract for mapping, idempotency, and large-export behavior.
Run the local services
| Command | Result |
|---|---|
matryca plumber status |
Open the UI and local API; the daemon remains under operator control. |
matryca plumber start |
Start the background maintenance daemon. |
matryca plumber stop |
Stop the daemon. |
Documentation
| If you want to… | Start here |
|---|---|
| Install, configure, and operate v2 | Shadow DB runtime and operator contract |
| Understand the system | Architecture |
| Integrate an agent | llms.txt and agent onboarding |
| Review features and contracts | OpenSpec index |
| Contribute | First contribution and contributor guide |
| Follow releases | Changelog and release process |
| Navigate the documentation system | Knowledge index |
| Review the 34-PR excellence milestone | Repository excellence milestone |
Project and community
- Issues — bugs and trackable feature work
- Discussions — design proposals and questions
- Contributing — development setup and quality gates
- Code of Conduct — community expectations
- Security — private vulnerability reporting
- Sponsor — support continued work
Matryca Plumber is developed by Marco Porcellato and Matryca.ai. Product naming and identity are defined in the branding guide.
License
Apache-2.0 — see LICENSE.
No comments yet
Be the first to share your take.