dsh-explainDeepSeek Harness plugin

Private, local-first continuous learning for DeepSeek Harness: capture, review, and correct what Explain learns.

Stars
12
Forks
0
License
MIT
Last commit
Sep 2, 2026
Latest release
v0.2.0

Overview

Private, local-first continuous learning for DeepSeek Harness: capture, review, and correct what Explain learns.

Original README

Cached from the project repository on Sep 3, 2026. This is source content, separate from the Agents.md review above.

View source
English · 简体中文

dsh-explain — turn everyday work into a private, continuous learning loop

DSH 0.1.2-alpha.5 CI Latest release Local first MIT License

Quick start · Watch the full demo · Privacy model · Reproduce the recording

dsh-explain is a learning-mode plugin for DeepSeek Harness. It turns useful concepts from completed work into structured explanations, schedules lightweight reviews, and lets you inspect or correct what it learns about you.

The primary agent stays untouched. Explain uses its own model calls, scheduler, context, and local SQLite database.

See the learning loop

A real DSH Web flow that captures a completed answer, reviews a concept, corrects a learner preference, and exports local data

The 28-second preview runs against real assembled DSH Web 0.1.2-alpha.5 with deterministic, private fixture data. Watch the higher-quality MP4 or read the recording contract.

CaptureReviewAdapt
Turn a finalized answer or selected text into an editable /explain draft. Nothing submits automatically.Revisit due concepts through recall, application, and distinction questions.Inspect explanation preferences and topic familiarity, then correct or forget an inference.

Quick start

Current main targets DSH 0.1.2-alpha.5:

sh
npx @deepseek-ai/dsh@0.1.2-alpha.5 plugin --profile web add github:yuezengwu/dsh-explain
npx @deepseek-ai/dsh@0.1.2-alpha.5 --profile web

Open Settings → Learning, choose an auxiliary provider and model, enable learning mode, and save. Explain observes only future completed top-level turns; it does not scan existing history.

Git-hosted plugins build during installation. If pnpm requests build approval, add the printed dsh-explain entry to the profile's pnpm-workspace.yaml, then repeat the install command. For automated runs that should not open a browser, start DSH with --no-open.

The latest tagged Explain release is v0.2.0; v0.3.0 has not been published. Installing from GitHub uses the current alpha.5-compatible main branch.

Start from the work itself

Entry pointWhat happens
/explain <request>Requests an explanation using the current session as bounded source context.
Explain selected textCreates an editable /explain --selection … draft from visible text.
Learn from this answerCreates an editable draft tied to the exact finalized assistant turn.
Automatic evaluationMay add one useful explanation after an eligible turn, within your configured budget.
/reviewOpens or resumes a local review round in the Learning tab.

Each explanation answers three practical questions: What is it? Why does it matter here? What is the common pitfall? Choose Got it to close the card, or Not yet for a different explanation.

Review, then correct the model

Concepts marked Got it enter a local spaced-review schedule. Learning → Today's review selects up to three due concepts and asks recall, application, and distinction questions. The auxiliary model evaluates each answer as Mastered, Partial, or Forgotten and schedules the next review at a deterministic interval.

Learning → Learning overview exposes the current judgments about explanation length, structure, examples, terminology, and topic familiarity—with confidence and source links. You can correct an inference, forget it, or set an explicit preference. Precedence is fixed and visible: explicit preference → user correction → model inference.

One learning thread, many sessions

  • Every $DSH_HOME owns exactly one Explain learning thread; resumes and forks never copy it.
  • Every source session has at most one explanation awaiting feedback.
  • One global scheduler serializes explanations, reviews, autonomous evaluation, rephrases, and compaction.
  • Autonomous evaluation has a persistent rolling 24-hour budget, configurable in Settings.
  • Rephrasing still works if a source session is later deleted because only a bounded source summary is retained.

Local-first by design

DataBehavior
Learning threadStored in $DSH_HOME/dsh-explain/v1/thread.sqlite.
Enablement and model settingsStored through DSH settings in $DSH_HOME/settings.yaml.
Source materialReduced to bounded capsules; rephrasing retains at most a 2,000-character restricted summary.
Global learning contextSent only to the auxiliary Explain model, never to the primary agent.
ExportA versioned local backup includes learning state and profile audit, but excludes full sessions, credentials, and absolute host paths.
ClearA typed CLEAR confirmation atomically removes learned content while preserving runtime settings and the active budget window.

Explain uses first-party DSH conversation, composer, assistant-action, and settings extension points. It does not require patches to DSH or other plugins.

Compatibility and verification

CheckCurrent result
DSH compatibility0.1.2-alpha.5 public API packages and assembled source
Unit and integration71 tests
Assembled DSH Web6 scenarios
Explain-owned shortcuts3 M6 scenarios
Production packageBuild and pack dry-run

See the acceptance matrix for coverage and PR #16 for the earlier real-model workflow evidence. DSH remains a developer preview; Explain follows its current public API line instead of retaining compatibility layers for private-preview packages.

Local development

The default development install uses published 0.1.2-alpha.5 API packages. Assembled-Web tests and demo recording also need a built DSH 0.1.2-alpha.5 source checkout:

sh
pnpm install
DSH_SOURCE_DIR=/absolute/path/to/dsh pnpm dsh:link
DSH_SOURCE_DIR=/absolute/path/to/dsh pnpm dsh:link:check
pnpm typecheck
pnpm test
DSH_SOURCE_DIR=/absolute/path/to/dsh pnpm test:web
DSH_SOURCE_DIR=/absolute/path/to/dsh pnpm test:m6
pnpm build

Install this checkout directly for manual development:

sh
dsh plugin --profile web add /absolute/path/to/dsh-explain
dsh --profile web --dump-config
dsh --profile web

Documentation

DocumentPurpose
Demo productionStoryboard, privacy contract, commands, assets, and artwork provenance.
Product requirementsUser model, scope, policies, and acceptance criteria.
ArchitecturePersistence, scheduling, RPC, UI integration, and failure behavior.
Acceptance matrixAutomated and real-flow evidence.
Iteration planCompleted milestones and follow-up sequencing.

License

MIT