DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Mindspace Dsh Session Memory — DSH Plugin for DeepSeek Harness
← Plugins
M

mindspace-dsh-session-memory

Mindspace Dsh Session Memory

Task-conditioned Chat and Work session memory for DeepSeek Harness

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:Spirtxiaoqi7/mindspace-dsh-session-memory#117df92bba55c9e17da4e8b858cad4dce16214a4
READMECompatibilityVersions

Compatibility and provenance

Mindspace Dsh Session Memory is published as mindspace-dsh-session-memory and currently resolves to version 0.7.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/14/2026

Versions

0.7.0stable
9/14/2026
0.6.10stable
9/3/2026
0.5.0stable
8/29/2026
Show 4 more versionsCollapse versions
0.4.1stable
8/29/2026
0.3.2stable
8/24/2026
0.2.35stable
8/21/2026
0.2.27-rc8prerelease
8/20/2026

Related plugins

Loading related plugins…

Latest
0.7.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 3
Weekly downloads
0
Last push
9/14/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in memory-context.

Memory Plugin@openviking/dsh-memory-pluginOpenViking memory and context bundle for DeepSeek HarnessContextdsh-contextA DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Memsearch Dsh@zilliz/memsearch-dshMemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.

README

Mindspace Memory for DeepSeek Harness

中文 · Community plugin · MIT

Separate work from everyday conversation. Maintain memory beyond context summaries.

Chat and Work are two memory contexts for the same user and assistant, not two tool-permission presets. Each stores people, relationships, preferences, assistant identity, current state and lasting experiences.

What's new in 0.7

  • Independent maintenance after compaction. The main model can still write memory, but is no longer solely responsible for remembering. After successful compaction, a separate model call reconciles existing memory against the original conversation captured before summarization.
  • Updates instead of blind accumulation. Maintenance adds durable omissions, corrects superseded facts and merges duplicates. Absence from recent conversation is not a deletion reason.
  • No shortest-card eviction. Each card section supports up to 100 entries. Exceeding three entries no longer removes the shortest one.
  • Settings inheritance. Create a blank session with the current Chat/Work memories, people, identity, bridge and compaction policy, without copying conversation history.
  • General current state. Appearance or clothing may be described here, but is not a required dedicated feature.

Interaction

Use the composer Chat / Work chip to express the current context. The model may also switch when the main intent changes. Modes never disable tools or alter permissions.

In Settings → Personalization, inspect/edit memory, inherit it into a new session, change the compaction policy or compact manually.

Cross-context facts are staged in a neutral bridge: a short transition note (up to 300 characters) plus pending write instructions. Only after entering the target mode does the model merge or dismiss each pending item.

Maintenance lifecycle

Compaction captures the original textual conversation since the last successful compaction. On success, a separate request receives this evidence and current memory, then proposes source-linked operations. Long conversations are processed in ordered batches rather than truncated.

Memory revisions are checked before applying changes. Concurrent edits cause a retry against the latest state; cross-mode changes remain staged. Failed calls preserve memory and task evidence, with up to three attempts per batch. Background maintenance does not block ordinary conversation.

This incurs additional model usage after compaction, not after every turn. Empty provider/model settings reuse the session route; a dedicated lower-cost model can be selected. No tools are supplied to the maintenance call. Model judgments can still be corrected in the Memory Center.

Configuration

Override the installed bundle in your Web profile's cordis.patch.yml:

- id: mindspace-session-memory
  config:
    maxTextBytes: 4096
    maxItemsPerSection: 100
    maxProfileCharacters: 300
    maintenanceEnabled: true
    maintenanceProvider: ''
    maintenanceModel: ''
    maintenanceMaxTokens: 6000

Restart after configuration changes. Compaction enablement/thresholds are per-session; maintenance configuration is plugin-wide. Successful manual compaction also triggers maintenance.

Compatibility and migration

Version 0.7 targets DSH 0.1.5-rc.2 and the corresponding 0.1.x APIs. Keep plugin 0.6.10 on the older 0.1.1 core until upgrading DSH.

Storage remains under DSH_HOME/mindspace-session-memory/v1; the directory name is not the document format version. V5 Chat/Work documents remain unchanged. Existing V1–V4 data is read through the migration path into Chat without inventing a Work persona. Legacy memory events can still be imported; new memory writes remain outside canonical session logs.

Maintenance tasks and original evidence live in DSH_HOME/mindspace-session-memory/maintenance. These are local user data, not repository artifacts. Back up DSH_HOME before upgrading. DSH handles its own session-format migration; use the matching pre-upgrade backup when rolling back.

Install from source

git clone https://github.com/Spirtxiaoqi7/mindspace-dsh-session-memory.git
Set-Location .\mindspace-dsh-session-memory
corepack pnpm install
corepack pnpm run check
$memoryTgz = (Get-Item .\dist\mindspace-dsh-session-memory-0.7.0.tgz).FullName
Set-Location C:\path\to\deepseek-harness
corepack pnpm dsh plugin --profile web add $memoryTgz
corepack pnpm dsh web

No DSH core patch is required. Do not load a duplicate legacy implementation alongside this plugin. Manual edits, model writes and maintenance share the same storage and revision path.

See CHANGELOG. This is not an official DeepSeek project.