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.

Relationship — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
R

dsh-relationship

Relationship

dsh-relationship 关系记忆工作台: a local relationship-memory workbench plugin for DeepSeek Harness. Contacts, confirmable AI memory extraction, pending queue, contact timelines, native relationship preset.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:tynr426/dsh-relationship#b7367af9f79b6f071a0b44b5ae4b603245a6c40e
READMECompatibilityVersions

Compatibility and provenance

Relationship is published as dsh-relationship and currently resolves to version 0.1.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/19/2026

Versions

0.1.0stable
9/19/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Apache-2.0
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/20/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.

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.Reme@agentscope-ai/remeReMe client and memory integrations for TypeScript agentsStratagate Dshstratagate-dshRecent conversations stay vivid. Older ones fade into summaries, not oblivion. StrataGate gives DeepSeek Harness six-layer, time-decaying memory, while lasting events and relationships settle into a knowledge graph. Bring your memories from other AIs withMeow Memorymeow-memoryCross-session project memory for DeepSeek Harness: seven-layer SQLite memory, first-turn snapshot injection, per-message keyword hits, memory_remember/search/project tools, automatic reflection with reflection-fold UI, and idle-triggered dream consolidati

README

dsh-relationship 关系记忆工作台

一个 DeepSeek Harness(DSH)本地插件:帮你以最低成本沉淀、整理和取用人际关系记忆。

核心体验:

  1. 录入即说话——在 DSH 会话里随口说「记一下,小李女儿十月办婚礼」,AI 拆成结构化的待确认记忆实时上板。
  2. 确认式入库——AI 只提取和建议,所有 AI 写入都是 待确认 状态;你逐条确认后才是长期记忆。
  3. 整理归 AI——归类、去重、冲突标记由 AI 完成,你只做确认和删改。
  4. 本地存储——数据保存在本机,不上传任何服务。

功能

  • 联系人管理:关系类型、标签、生日(支持只记月日)。
  • 待确认队列:AI 提取的候选记忆逐条确认 / 编辑 / 驳回,支持一键全部确认。
  • 智能整理:记一笔弹窗切到「智能整理」可粘贴长文本/聊天记录,存档为素材后在 DSH 会话说「整理素材」,AI 拆成多条待确认记忆(保留原文溯源)。
  • 联系人时间线:已确认记忆按人聚合,按类型筛选。
  • 手动记一笔:不经过 AI 的直接录入(即录即确认)。
  • relationship preset:绑定 DSH 原生会话的「关系记忆」AI 行为。
  • 双存储后端:默认零依赖 JSON 文件存储;可选 rust 实现的 SQLite 后端(npm run build:relstore 编译,无二进制时自动回退 JSON)。

使用方式

作为 DSH 插件

安装 dsh-relationship 插件包后,GUI 侧边栏出现「关系记忆」入口;数据存于 ~/.dsh/dsh-relationship。DSH 会话中选择「关系记忆」preset(或经安装脚本安装)即可对话录入:

dsh plugin --profile web add tynr426/dsh-relationship   # 从 GitHub 安装插件
scripts/install-relationship-preset.sh                   # 安装 preset 到 ~/.dsh/.agent-presets/relationship

独立运行

npm start        # http://127.0.0.1:8901(数据存于 ./data)

独立模式下可浏览和手动录入;AI 对话录入请在 DSH 内使用。

AI 接入(面向 agent)

工作台所有业务操作都是 REST API;DSH 会话内推荐统一走工具入口:

curl -X POST http://127.0.0.1:8901/api/tools -H 'content-type: application/json' \
  -d '{"name":"memory_add","args":{"contactId":"c_xxxx","type":"event","content":"女儿十月办婚礼"}}'

可用工具:contact_search / contact_add / contact_update / memory_add / memory_batch_add / memory_confirm / memory_reject / memory_update / memory_search / timeline_get。

纪律:AI 写入只产生待确认记忆;录入前先 contact_search 防止建重;生成祝福/礼物建议前先 memory_search。

开发

npm install          # 安装测试依赖(@playwright/test)
npm run test:unit    # 单元 + API 测试
npm run test:e2e     # 需先 npx playwright install chromium
npm test

详见 AGENTS.md。

License

Apache-2.0