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.

Memory Ga — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

dsh-memory-ga

Memory Ga

Gated GA-style layered memory for DeepSeek Harness: hard-injected L1, working checkpoint, settlement to Skills/L1/L2 — no silent auto-retain.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:DiligenceLai/dsh-memory-ga#8a7150fac7c7cc063b688bf789e1feb26e82bcfc
READMECompatibilityVersions

Compatibility and provenance

Memory Ga is published as dsh-memory-ga and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/23/2026

Versions

0.1.2stable
8/23/2026
0.1.1stable
8/22/2026
0.1.0stable
8/22/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/23/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

Related plugins

More verified plugins in memory-context.

Contextdsh-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.Memory@furongjun1999/dsh-memoryLingshu (Lingshu·líng shū) DeepSeek Harness plugin: a complete brain—long-term memory/knowledge flywheel/self-awareness/recursive reflection integrated with DSH, with conversations automatically distilled into the md_cg cognitive graph (md documents)

README

dsh-memory-ga

Gated, file-based long-term memory for DeepSeek Harness — inspired by GenericAgent’s discipline: No Execution, No Memory.

Your agent already has Skills.
What it usually lacks is a small, trustworthy index of facts + rules, a session notepad, and a settlement ritual that turns hard-won lessons into Skills / facts — without silently poisoning memory from every chat.

Language: English · 中文


Why this exists

Coding agents forget. Vector “auto-memory” products remember too much — drafts, wrong turns, guesses.

dsh-memory-ga takes the other path:

PrincipleWhat you get
Verified onlyLong-term writes only after tools (or the user) confirmed reality
Hard-injected L1A ≤~30-line index + RULES every turn — not a pointer you might never open
Working notepadSession key_info re-injected while non-empty
Gated settlementstart_long_term_update opens a protocol; it does not auto-edit your files
Skills stay SkillsReusable procedures → DSH Skills. Memory is not a second SOP warehouse
Local & auditablePlain UTF-8 under $DSH_HOME/memory — diff, backup, hand-edit

No embeddings required. No cloud bank. No silent retain.


Architecture (deliberately small)

$DSH_HOME/memory/
  L0_memory_management.md   # constitution (how to remember)
  global_mem_insight.txt    # L1: NAV + RULES  → hard-injected
  global_mem.txt            # L2: verified facts → read on demand (≤9-line sections + pointers)
  l3/<topic>.md             # L3: long-form fact dossiers (L2 sections point here)
  .working/<session>.txt    # optional session notepad dump

DSH platform (not this folder)
  Skills / skill catalog    # procedures
  Sessions                  # full transcripts (query via DSH, not a memory “L4” tree)

No notes-style junk drawer and no memory-tree L4. l3/ holds fact dossiers only — procedures belong to Skills (Skill = how-to, L3 = what-is).
If a Skill is wrong, fix the Skill — don’t keep a shadow errata page in memory.

Verified + worth keeping?
  ├─ reusable workflow  → DSH Skill (+ optional L1 one-liner)
  ├─ env / config fact  → L2 (± L1 pointer)
  ├─ very long fact     → l3/<topic>.md dossier (+ L2 pointer)
  ├─ one global rule    → L1 RULES
  └─ this task only     → Working (or discard)

Tools

ToolRole
update_working_checkpointReplace session notepad (key_info)
start_long_term_updateReturn L0 + settlement protocol (no automatic writes)
memory_statusPaths, L1/L2 sizes, l3 dossier count, working empty?, nudge counters

Optional soft nudges (default on): after enough steps, gently remind checkpoint / settlement. Never force tool calls. Never auto-write L1/L2.


Install (DeepSeek Harness profile)

Compatible with DSH Cordis plugins (dsh.bundle.patch).

A. From Git (recommended once published)

In your profile directory (example: $DSH_HOME/profiles/web):

pnpm add dsh-memory-ga@github:DiligenceLai/dsh-memory-ga

Ensure the profile loads the package (either list it under dsh.profile.bundles or rely on the package’s cordis.patch.yml insert — same pattern as other DSH community plugins).

B. Local path (development)

pnpm add dsh-memory-ga@file:../path/to/dsh-memory-ga

Note: some package managers copy file: deps. After editing the plugin source, reinstall/relink the profile dependency and restart DSH (or wait for profile HMR).

C. Skill helper (optional)

Copy the bundled skill into the user skills root so the agent can load memory-management:

skills/memory-management/SKILL.md  →  $DSH_HOME/skills/memory-management/SKILL.md

Restart or wait until the skill filesystem rescans.


Quick verify

  1. Restart DSH / reload the profile.
  2. In a session, run memory_status → should show $DSH_HOME/memory.
  3. update_working_checkpoint with a short note → next model step should include ### [WORKING MEMORY].
  4. start_long_term_update → protocol + full L0; disk unchanged until you edit.

First boot creates missing L0/L1/L2 from templates and never overwrites existing files.


Configuration

Cordis config on plugin id memory-ga (optional):

- id: memory-ga
  config:
    # root: null            # default: $DSH_HOME/memory
    bootstrap: true
    injectL1: true
    injectWorking: true
    l1MaxChars: 1200
    workingMaxChars: 1200
    persistWorkingFile: true
    nudge:
      enabled: true
      workingEvery: 12
      settleAfterSteps: 15
      maxWorkingNudges: 3
      maxSettleNudges: 2

Hard dependency: the plugin declares inject: ["tools", "systemPrompt", "llm"]. @deepseek-ai/dsh-llm (with createUserMessage) must be present in the host composition — working-memory and nudge injection rely on it. If it is missing, the plugin still loads but memory_status will warn that working/nudges are not injected, rather than silently failing.

workingMaxChars is the single cap for both storing and injecting the working notepad, so memory_status.workingChars always reflects what the model actually sees.


What this is not

  • Not a vector database / TEMPR / auto-git retain product
  • Not a replacement for DSH Skills
  • Not automatic Skill generation
  • Not a dump of full chat transcripts into memory/

If you want maximum automatic recall across tools, look at other stacks.
If you want controlled crystallization and git-friendly truth, you’re in the right place.


Privacy

This repository ships generic templates only.
Your real L1/L2 live under $DSH_HOME/memory on your machine and are never part of this package.
Do not commit personal memory files, tokens, or absolute home paths into forks.


Development

git clone <this-repo>
cd dsh-memory-ga
pnpm install   # schemastery + peers for local smoke

Entry: lib/index.js (Cordis name / inject / Config / apply).


Contributing

Issues and PRs welcome: install docs for more profiles, stronger nudge hooks, project-scoped memory overlays, session-search Skill examples.


License

MIT — see LICENSE.

GenericAgent is a separate project; this plugin only borrows the memory discipline, not GA’s full runtime.