PerryLink
dsh-session-sync
Cross-device DeepSeek Harness session sync: a dedicated git mirror with append-only keep-both conflict resolution (fork files, never silently overwritten), /sync command and sync_* tools
- Stars
- 0
- Language
- JavaScript
- Created
- Aug 16, 2026
- Updated
- Aug 16, 2026
Introduction
dsh-session-sync
Cross-device session sync for DeepSeek Harness — a dedicated git mirror of your session store.
Sync your sessions between devices, keep both sides on any conflict, never lose a turn.
Compatibility
| Surface | Status |
|---|---|
| Harness | DeepSeek Harness 0.1.0-rc.6 |
| Node | ^22.19.0 || >=24.0.0 |
| Platforms | Anywhere git and DSH run (git-based mirror; no platform-specific code) |
| Model | Text-only models fully supported; no vision or extra model capability required |
What you get
dsh-session-sync mirrors your DSH session store into a dedicated git worktree and syncs it to a remote you control — no cloud service, no third-party storage:
/synccommand —status(branch, sanitized remote, ahead/behind, dirty files, forks),diff,log,pull,push,help.sync_status/sync_pull/sync_pushtools — the same surface for the model, inside a turn.- Append-only conflict resolution — session logs are append-only; on any divergence the plugin keeps both sides (local version kept, remote version preserved as fork files) and never silently overwrites. Diverged sessions can also fork at the session level.
- Auto modes — pull on start, push after every closed turn, and periodic pull, all configurable and all reversible.
- Confirmation-gated writes —
pull/pushask first (throughuserQuestionsorapproval); read-only surfaces never ask; with no answerer the operation fails closed.
device A remote (your git repo) device B
$DSH_HOME/sessions ──mirror──▶ commit ──push──▶ [sessions] ──pull──▶ merge (keep-both + fork)
Quick start
# 1. install the bundle into your profile
dsh plugin --profile web add "github:PerryLink/dsh-session-sync#main"
# or from npm (published releases)
dsh plugin --profile web add dsh-session-sync
# 2. point it at a private git remote and verify the row
dsh --profile web --dump-config | grep -A2 'id: session-sync'
Then set the remote in your profile patch (a private repository is the baseline) and sync:
- insert:
- id: session-sync
name: dsh-session-sync
config:
remote: git@github.com:you/your-dsh-sessions.git
> /sync status
> /sync pull
> /sync push
Install & uninstall
- git channel (latest
main):dsh plugin --profile web add "github:PerryLink/dsh-session-sync#main"(equivalent to installing fromgit+https://github.com/PerryLink/dsh-session-sync.git). No build step —index.mjsandlib/are the shipped artifacts. - npm channel (published releases):
dsh plugin --profile web add dsh-session-sync. - tarball channel:
pnpm packin this repo, thendsh plugin --profile web add ./dsh-session-sync-<version>.tgz. - uninstall:
dsh plugin --profile web remove dsh-session-sync(or remove the row from the profile patch).
Configuration
All tunables are Schemastery Config fields (changeable from cordis.yml). An id-targeted override replaces the whole row — restate every key you need. cordis.patch.yml documents each key inline.
| Key | Default | Meaning |
|---|---|---|
enabled | true | Master switch; false unregisters the command, tools, listeners, and auto modes |
backend | git | Sync backend; only git is implemented (encrypted backends are reserved and fail loud) |
sessionRoot | '' | Session store root; empty = $DSH_HOME/sessions (both missing fails load) |
repoDir | '' | Sync worktree root; empty = $DSH_HOME/dsh-session-sync/repo |
remote | '' | Remote address (required before pull/push; status/diff work without one) |
branch | main | Remote branch name |
gitBin | git | git executable path |
autoPullOnStart | false | Pull once when the plugin mounts (config is the grant; no re-confirm) |
autoPushOnTurnEnd | false | Push after every closed turn |
pullIntervalMinutes | 0 | Periodic pull every N minutes (0 = off, max 10080) |
confirmVia | auto | Confirmation channel: auto (userQuestions first, then approval), userQuestions, approval |
graceMs | 10000 | Grace period for git kills (ms) |
commandTimeoutMs | 120000 | Per-command timeout (ms) |
maxOutputBytes | 262144 | Per-stream collected-output cap (bytes) |
commitName | dsh-session-sync | Commit author name |
commitEmail | dsh-session-sync@localhost | Commit author email |
registerCommand | true | Register the /sync command |
registerTools | true | Register the sync_* tools when the tools service is present |
Example override in your profile patch:
- insert:
- id: session-sync
name: dsh-session-sync
config:
remote: git@github.com:you/your-dsh-sessions.git
branch: main
autoPushOnTurnEnd: true
pullIntervalMinutes: 30
confirmVia: userQuestions
Tools & surfaces
| Surface | Read-only | Needs confirmation | Notes |
|---|---|---|---|
/sync status | ✅ | — | Branch, sanitized remote, ahead/behind, dirty files, fork files, last pull/push |
/sync diff | ✅ | — | Uncommitted changes + HEAD..remote stat (read-only) |
/sync log | ✅ | — | Last commits in the sync repository |
/sync pull | ✅ | Fetch + merge with keep-both semantics; local kept, remote preserved as forks | |
/sync push | ✅ | Mirror + commit + push; never force-pushes, reconciles and retries once on rejection | |
sync_status | ✅ | — | Same facts as /sync status for the model |
sync_pull | ✅ | Model-callable pull | |
sync_push | ✅ | Model-callable push |
Permissions & data
- Permissions: mutating operations cross the confirmation gate (
confirmVia); the plugin never re-implements or bypasses the harness'suserQuestions/approvalservices. Auto modes are covered by the config grant and never re-confirm. - Data: sync metadata (device id, last pull/push, last push head, last error) lives in the
session-syncstorage domain. Session files are copied as opaque bytes — the plugin never parses them. The device id is also written todevice.txtin the sync repository for cross-device fork attribution. - Session log:
sync/push,sync/pull, andsync/conflictare declared intypes.d.ts; they are appended only when the host records the types (see Known limitations). Everything written or shown is sanitized.
Security boundaries
- Never silently overwrite. The append-only three-way merge keeps both sides on any divergence; fork files are never deleted, and git never force-pushes, resets, rebases, or switches branches.
- Path containment. Files are mirrored as opaque bytes with symlinks refused and every joined path containment-checked (
PATH_UNSAFEfails loud). - Sanitized output. Remote-URL credentials, tokens, and
key=valuesecrets are redacted before reaching the model or the log; path display refuses anything outside its root. - No credential storage. The plugin stores no credentials; git credentials live in your normal git credential helper. The reserved end-to-end-encryption backend is unimplemented and keys never enter the sync repository.
- Git hardening. Git runs with
GIT_TERMINAL_PROMPT=0andGIT_OPTIONAL_LOCKS=0, deadline- and signal-bounded, with a per-stream output cap. - Fail closed. A missing confirmation answerer, a missing remote, or an unsafe path refuses the operation loudly.
Known limitations
- git backend only. End-to-end-encryption backends (age/GPG-style) are reserved but not implemented; configuring one fails loudly at load. Until then, session bytes are stored unencrypted in your git remote — use a private repository.
- git required. The plugin needs the
gitexecutable and thesubprocessservice; without them, sync operations fail with a clear reason (profiles keep booting). - Session events on
0.1.0-rc.6. The harness does not yet recordsync/*event types, so on rc.6 the session-log appends are skipped (sessions keep loading); the plugin enables them automatically once a host records the types or supports theignorableenvelope. approvalbetween turns./syncruns between turns, where theapprovalchannel has no open turn to attach to; useconfirmVia: userQuestionsfor command-driven sync, or drive sync through the tools inside a turn.
Development
pnpm install # node ^22.19 || >=24
pnpm run typecheck && pnpm run typecheck:ci # tsc --checkJs against the published rc.6 peers
pnpm test # node --test (6 suites; git suites skip without git)
pnpm run verify:self-contained # dependency specs resolve from the registry
pnpm run verify:artifacts # shipped files present + index.mjs importable
pnpm run check:readmes # five-language README consistency
pnpm pack # the published tarball
There is no build step: pure ESM, index.mjs and lib/ are the shipped artifacts.
Topics
dsh, dsh-plugin, deepseek-harness, deepseek, cordis, session-sync, session, git, sync, cross-device
Contributors
- @PerryLink — creator and maintainer: git mirror engine, append-only keep-both merge,
/synccommand andsync_*tools, auto modes, sanitizers, and the five-language docs.
License
LICENSE (Apache License 2.0) © 2026 dsh-session-sync contributors