Back to marketplace

dsh-trivium

Models & Data

QWQcool/dsh-trivium

In-process graph memory kernel for DeepSeek Harness, backed by TriviumDB, with one .tdb per workspace and optional chip inject.

  • deepseek-harness
  • dsh-plugin
  • memory
  • triviumdb
GitHub Stars
2GitHub
Views
0DSH Plugin Hub
Forks
0GitHub
Open issues
0GitHub Issues
Manifest version
0.4.14dsh-trivium
Latest push
Aug 26, 2026GitHub
License
MITJavaScript
Plugin type
Host + ClientRuns in both Host and Web Client

README

View source

dsh-trivium — In-process graph memory for DeepSeek Harness

In-process graph memory for DeepSeek Harness. One .tdb per workspace. No extra server.

The kernel stays close to DSH: no extra process, no extra nav by default. Pin memory fragments with optional chip inject; the plot canvas is an optional extra, loaded from Settings.

Quick install: dsh plugin --profile web add dsh-trivium → restart dsh web → open a workspace (Settings shows Trivium memory; the Chips tab stays off until you turn it on). Details in Installation.

English | 中文版


Installation

Prerequisite: install DeepSeek Harness and start dsh web at least once. Tested host: @deepseek-ai/dsh@0.1.1-rc.2 (dsh-llm / dsh-tools peers also accept 0.1.0-rc.8).

dsh plugin --profile web add dsh-trivium

Restart dsh web. Memory lives in the current workspace:

<workspace>/.dsh/trivium.tdb      # local index (binary; gitignore this)
<workspace>/.dsh/trivium.jsonl    # git source of truth (business facts)

Commit trivium.jsonl. Ignore the binary store:

.dsh/trivium.tdb
.dsh/trivium.tdb*
.dsh/trivium-pending.json

Clone / git pull re-imports when the jsonl changed. Settings → Git sidecar is off by default (same as chips). Turn it on under Settings (the fold below Check for updates). The switch only starts or stops auto-write. Generate (while on) overwrites .dsh/trivium.jsonl from the current .tdb at the same path. Delete jsonl (while off) removes known workspace jsonl files (.tdb stays). Episodes, embeddings, and chip pins stay local.

If you launch DSH with Dsh_BatStart, the plugin is installed for you — skip the command above.

Local source checkout:

npm install
node scripts/link-dsh.mjs

Then restart dsh web.

Updating

dsh plugin --profile web add dsh-trivium

Restart dsh web. For a source checkout, git pull then run node scripts/link-dsh.mjs again.

Uninstall

Stop dsh web first so the .tdb is not locked, then:

dsh plugin --profile web remove dsh-trivium

remove deletes this plugin’s files: ~/.dsh/trivium.json, and in every workspace the plugin has opened, .dsh/trivium.tdb, trivium.jsonl, and trivium-pending.json. Other files under .dsh/ stay. Updating with dsh plugin add dsh-trivium does not wipe memory. If trivium.jsonl was committed, git checkout brings it back.

Restart dsh web afterward: Settings no longer shows Trivium memory, the title bar no longer shows Chips, and the four tools are unregistered.

Workspaces never opened after this version may still have an old .tdb; delete that file by hand if you find one. Disable without uninstall (data stays): in that profile’s cordis.patch.yml add:

- id: dsh-trivium
  disabled: true

Then restart dsh web.

Permissions and data

The plugin loads inside the dsh web process. It does not open its own port or extra service.

AccessDefaultNotes
Workspace .dsh/trivium.tdbread/writeMemory store. Do not open the same file from two Node processes at once
Workspace .dsh/trivium.jsonlread/writeGit sidecar (off by default). Business nodes/edges only; no embeddings
~/.dsh/trivium.jsonread/writeSettings and chip pins; may contain an embedding API key you typed
.dsh/trivium-pending.jsonread/writeLocal queue when extract fails
NetworkoffChat text is not sent out. Embedding outbound happens only if you turn it on and fill a URL. Settings Check for updates fetches the npm registry (version only, no transcript)
Transcriptstays localExtract and search run on this machine; with embedding on, retrieved text is sent to the URL you filled

The official DeepSeek chat API has no embeddings endpoint. Keyword + graph walk still work without it. Restart dsh web after changing settings or embedding.

AI-era installation

Copy this to your assistant:

On DeepSeek Harness, run: dsh plugin --profile web add dsh-trivium
Then restart dsh web. Settings will show "Trivium memory". The title-bar tab is
"Chips" and is off by default; turn it on under Settings → Trivium memory
(Chips / memory whitelist). The toggle saves immediately; no second restart.

Graph memory that stays quiet

Trivium is a memory kernel, not a journal, calendar, or chat companion. It stores nodes and edges, injects as little as possible, and lets you correct mistakes.

  • Cross-session graph — session A stores “auth goes in header X”; session B calls ctx_find("auth") and gets the hit plus who it links to (about / decided / broke / fixed).
  • Default quiet — a new session injects one short map (≤400 tokens). The model calls tools when it needs more. Nothing is dumped every step. No extra title-bar tab until you turn Chips on.
  • Chips / memory whitelist (off by default) — Settings → Trivium memory. Toggle saves to ~/.dsh/trivium.json immediately and survives restart. The title bar then shows Chips next to Conversation / Trajectory. Checked items pin into the next turn (L0, ≤300 tokens). Under it, Session layer (also off) draws compaction / forks as boxes.
  • Human-editable — chips can add, archive, or delete; Settings search, rename, merge, import/export, and global switches.
  • Strict extraction — chitchat, one-off file edits, and secrets are not auto-written from the transcript. Chip “Add” stores exactly what you typed (one paste = one node), still through the write hygiene gate.
  • Write hygienectx_remember, chip add, extract, and external import refuse mojibake, stutter loops, JSON envelopes, base64 residue, and secrets. Dirty nodes already in .tdb stay visible in Settings so you can archive them; they are hidden from find / short map / chips.
  • Optional embedding — off by default. The official DeepSeek chat API has no embeddings endpoint; fill an OpenAI-compatible URL if you want one. Keyword + graph walk still work without it.

Under the hood

  • In-process, one file — TriviumDB (vectors + JSON payload + directed weighted graph) opens with the DSH process. No sidecar HTTP/Python service.
  • Four tools onlyctx_find / ctx_read / ctx_remember / ctx_link. Chips / session layer do not add a fifth.
  • Injection via agent.inject() — not the system prompt, so persona.complete: true cannot silently drop the map.
  • Recall carries paths — every hit says which node it came from and along which edge.
  • Failures never block the agent — store / embedding / extract errors are logged; the main loop continues.
  • UI follows the host language — Settings and the Chips (memory whitelist) tab switch with DSH locale/change (zh / en).
  • First-turn map — the short map is injected once per session. If session-start loses a race with the first model step, pre-step fills it in; it is not rewritten every step (prefix-cache friendly).

Features

Cross-session graph

Nodes are entity / preference / decision / experience. Business edges are about, decided, broke, fixed.

ctx_find returns L0 summaries plus edge paths (incoming as <-label-id). If the query names an existing entity, unexpired about / decided / broke / fixed neighbors come along even when the neighbor text does not contain the query. Decisions with until stay hidden after they expire, unless the query itself is asking about that deadline (e.g. “Friday”).

Chips (memory whitelist)

Off by default. In Settings, turn on Chips (memory whitelist) — no extra Save click, no restart. The title bar shows Conversation / Trajectory / Chips at once, and the choice is stored in ~/.dsh/trivium.json so it survives restart. This is a pin whitelist, not the memory editor. Rename, merge, and global switches stay on the Settings page.

Lists unarchived preference / decision / entity (experience stays out). Check to pin into the next turn (L0, ≤300 tokens). Add / archive / delete on the strip.

ActionWhen it takes effect
Check a chipThe next message you send in this segment carries it (L0, ≤300 tokens)
UncheckThe turn after that no longer carries it
AddOne click writes one node; a whole paste is still one node
Select → ArchiveSoft delete: gone from find / short map / chips; the node remains in .tdb
Select → DeleteRemoved from .tdb, not recoverable
Turns already sentNot rewritten

Chips are per session. New sessions and forked children start unchecked. Inherit pins when the session layer fork dialog is on, or check them again on the child. The short map still arrives at session-start and does not use a chip slot.

Session layer is a nested switch, also off. When on, the same tab draws compaction / fork boxes (Create checkpoint, Update checkpoints, fork from a box). Episode nodes are not recalled by ctx_find. Turning the layer off stops writing episodes; existing .tdb nodes stay.

Settings (Trivium memory)

Settings → Trivium memory manages the store. Check for updates sits at the top; memory entries stay visible. Everything else is inside a Settings fold (collapsed by default): injection, extract, chips, Git sidecar, plugin language, import, embedding. Toggles write ~/.dsh/trivium.json as soon as you flip them.

SwitchDefaultWhat it does
Chips (memory whitelist)offTitle-bar Chips tab next to Conversation / Trajectory. Checked chips are a whitelist for the next turn (L0, ≤300 tokens).
Session layeroff (needs Chips on)Plot canvas on the same tab: Create checkpoint, Update checkpoints, fork from a box.
Git sidecaroffDebounced write of .dsh/trivium.jsonl. Generate (on) overwrites from the current .tdb. Delete jsonl (off) removes known files. Clone / pull re-imports.
Plugin languagefollow hostChinese / English for this plugin's Settings card and Chips tab only. Does not change DSH.
InjectionoffShort map only, unless you pick autoRecall or entity-name path.
ExtractonWrite from compaction / idle.
EmbeddingoffNeeds Save plus a URL; restart after changing the URL.

Injection detail: autoRecall injects at most 3 L0 hits when the step has user text; entity-name path injects 1-hop business neighbors only when the utterance names an existing entity. Checked chips share the budget and win first. Extract runs after compaction/end and a short idle; failures go to pending and replay on the next session-start (body ≤3000 chars, at most 24 items).

  • Entries — search, filter by type, expand business-edge neighbors, “only nodes hanging on this one”, hide expired decisions by default. Rename / edit body / aliases / until, merge same type, archive or delete.
  • Export / import — JSON is a real round-trip. Markdown is a read-only projection (for people). Git sync uses .dsh/trivium.jsonl (business facts, auto). One-shot strict import from WorkBuddy MEMORY.md, Claude Code CLAUDE.md, and Codex AGENTS.md. No watch of those files, no session jsonl dumps.
  • Check for updates — Settings compares the installed version with npm latest and shows dsh plugin --profile web add dsh-trivium when a newer version exists. It does not auto-upgrade.

Agent tools

ToolWhat it does
ctx_findSearch; L0 summaries and graph paths (incoming <-label-id). Entity-name queries also return unexpired about/decided/broke/fixed neighbors. Expired until decisions stay out unless the query asks about the deadline
ctx_readFull text and incoming edges by id
ctx_rememberManual write
ctx_linkDirected edge between two nodes

The kernel is still these four. Chips / session layer do not add a fifth tool.


Screenshots

Captured inside DSH Web (0.1.1-rc.2). Screenshots below are from the Chinese UI. The plugin follows the DSH host language unless you pick Chinese / English under Settings.

Conversation — ctx_find("鉴权")

Session-start injects the short map; the model calls ctx_find and hits “auth in this repo goes in header X”.

Trajectory — injection is visible

Settings — updates, language, injection

Check for updates sits above a collapsed Configuration fold (plugin language, injection strategy).

Settings — extract, chips, Git sidecar

Nested under chips: Session layer (plot canvas). Git sidecar, Markdown export, one-shot external import, and remote embedding are on the same page.

Settings — memory entries

Chips — optional, next to Conversation / Trajectory

Off by default. After you turn Chips (memory whitelist) on in Settings, the title bar shows Chips immediately. With Session layer also on, a never-compacted session has one “Next” box; chips sit on top (unchecked by default). Create checkpoint folds “Next” into a left box. After compaction or /compact, historical boxes appear on the left; forks leave a box toward a child session.


Limitations

  • If the model never calls ctx_find and no chips are checked, the window is mostly the opening short map.
  • Extraction misses things; dirty data can be archived / deleted on the chip strip or edited / merged in Settings.
  • Do not open the same .tdb from two Node processes at once (one dsh web is enough).
  • Markdown export is for humans; it cannot be parsed back. Git-friendly write-back is trivium.jsonl, not Markdown. External import (WorkBuddy / Claude Code / Codex) is one-shot, not two-way sync, and does not ingest session jsonl dumps.
  • Do not merge .tdb in git (binary). Track trivium.jsonl; ignore .tdb. jsonl merge conflicts are ordinary text — resolve, then reopen the workspace.
  • The session layer (when on) projects compaction and fork; it does not split boxes by message count. If the window has not reached DSH’s compact line, Update checkpoints will not invent history boxes — use Create checkpoint.
  • Plugin setting toggles (chips / session layer / git sidecar / recall / extract) save immediately. Embedding URL still uses Save; restart only if the Settings card itself is missing.
  • After the host moved to rc.8, DSH’s own older session store may not open (official SQLite format change). The workspace .tdb graph is still there; leftover boxes on unmatched old sessions are plot residue and do not affect ctx_find.

Changelog

0.4.14 — Storage bump to triviumdb@0.8.1 (harder WAL/locks, optional read-only share, ARM64 fixes). Four tools / short map / find paths unchanged.

0.4.13 — Title-bar tab is Chips (short); the Settings switch stays Chips (memory whitelist). Toggling the session layer refreshes the Chips tab immediately. Settings / Chips screenshots updated.

0.4.12 — Git sidecar: workspace .dsh/trivium.jsonl is the text source of truth (business nodes and edges). .tdb stays the local index. Writes are debounced (~1.5s), no extra model calls. Clone / git pull re-imports when the file changed. Switch is off by default. Generate overwrites jsonl from the current .tdb; Delete jsonl (switch off) removes known files. Settings folds optional config below Check for updates. Plugin language can follow the host or lock zh/en.

0.4.11 — Title-bar tab is Chips (memory whitelist) (was Session graph). The switch persists to ~/.dsh/trivium.json as soon as it is toggled; the tab appears or disappears immediately, no restart.

0.4.10dsh plugin remove deletes known workspace .tdb files and ~/.dsh/trivium.json. Plugin update does not wipe. Disable-in-place still keeps data.

0.4.9 — Chips tab and session-layer canvas are both off by default. Title bar shows Chips only after the Settings switch; session boxes sit under that switch. Kernel (four tools, short map, in-process .tdb) unchanged.

0.4.8 — Write + inject hygiene gate (secrets, mojibake, stutter, JSON envelopes, base64 residue). Settings / Chips tab follow DSH language. Settings can check npm for updates. One-shot strict import also discovers Claude Code CLAUDE.md and Codex AGENTS.md. First-turn short map is guaranteed if session-start races the first step.

0.4.7 — Storage bump to triviumdb@0.7.6 (searchExact / searchBatch on the engine). find / Chips tab behavior unchanged.

0.4.6 — Chips tab Create checkpoint: fold the current “Next” into a left box. Does not trigger DSH compaction.

0.4.5 — Host peers widened to 0.1.0-rc.8 and 0.1.1-rc.2; no nested old dsh-llm / dsh-tools.

0.4.4triviumdb@0.7.5: incoming edges, expand-by-label, delete-by-label go through engine APIs instead of scanning all edges. find / Chips tab behavior unchanged.

0.4.3 — Chips tab Update checkpoints: backfill DSH compression markers and sidebar forks for sessions that existed before the plugin. Never-compacted sessions still have only “Next”.

0.4.2 — Chip strip can add (one paste = one node) and batch archive / delete. Auto-extract stays strict; chip add writes what you typed.

0.4.1 — Host pinned to @deepseek-ai/dsh@0.1.0-rc.8. Same features as 0.4.0. Confirmed on rc.8: Settings “Trivium memory”, new-session short map, cross-session ctx_find, title-bar tab (now Chips).

0.4.0 — Title-bar tab, memory chips, fork from a checkpoint.

Troubleshooting

SymptomWhat to do
Settings has no Trivium memoryConfirm the web profile, then restart dsh web and open a workspace. Reloading the browser is not enough.
Title bar has no ChipsTurn on Chips (memory whitelist) in Settings (it saves as soon as you toggle). Switch back to the conversation; the tab should appear without restarting.
Injection / extract / embedding / chip tab changes have no effectChip / extract / recall toggles save immediately. Embedding URL still uses Save. Restart dsh web only if the settings page itself is missing.
Session layer shows only a Next boxExpected when the nested session layer is on. Boxes follow DSH compaction; a long session is not the same as already compacted (auto-compact is around 80% of the window). To split: /compact in the conversation, or Create checkpoint (plot only, does not compact the window). Older sessions can use Update checkpoints to backfill past compaction / forks.
ctx_find returns nothingA new session injects the short map only; the model must call the tool. You can also Add on the chip strip or tell the model “remember: …”. Chitchat and one-off file edits are not auto-written.
.tdb is locked / will not openRun one dsh web. Do not run two Node processes that both linked this plugin.
Embedding is filled but search is no more accurateFailures fall back to keyword + graph. Check that ~/.dsh/trivium.json has an OpenAI-compatible URL (the /v1 kind). Restart after changing it.
Memory still there after uninstallStop dsh web before dsh plugin remove. Leftover .tdb is a workspace never opened on 0.4.10+; delete .dsh/trivium.tdb in that folder. Committed trivium.jsonl comes back with git checkout. Disable-in-place does not wipe.
Check for updates failsThat request only hits the npm registry for the latest version. Memory is unaffected; try again later.
Old conversations will not open after rc.8That is DSH’s own session-store format change, not a broken .tdb. Graph memory still works via ctx_find; leftover boxes on unmatched old sessions are plot residue.

Local source checkout: npm install, then node scripts/link-dsh.mjs, then restart dsh web. triviumdb is a native module; if it will not install, check Node against package.json engines (^22.19.0 || >=24).


Release info


Acknowledgements

Parts of the write hygiene gate, npm update check, host-locale UI switching, and Claude Code / Codex file discovery were adapted from dsh-auto-memory (Aik358). The product stays a graph kernel (nodes, edges, four tools, quiet default) rather than a journal / calendar companion.

Comments

0
Newest first