DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Hermes Bridge — DeepSeek Harness 插件(DSH Plugin)
← Plugins
H

@aalvsz/dsh-hermes-bridge

Hermes Bridge

DeepSeek Harness 的原生自适应智能层:记忆、技能、/learn、后台审查和策展器——无需 Hermes 或 Python 依赖。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:aalvsz/dsh-hermes-bridge#ccb73e5198bcd059b820eba36adfa183e8ca2fdf
README兼容性版本

兼容性与来源证明

Hermes Bridge 以 @aalvsz/dsh-hermes-bridge 发布,当前版本为 0.2.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/27

版本

0.2.1stable
2026/8/27

相关插件

正在加载相关插件…

最新版
0.2.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/8/27
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Memory@furongjun1999/dsh-memory灵枢(Lingshu·líng shū)DeepSeek Harness 插件:完整大脑——长期记忆/知识飞轮/自我认知/递归反思接入 DSH,对话自动沉淀进 md_cg 认知图(md 文档)Reme@agentscope-ai/reme面向 TypeScript 代理的 ReMe 客户端和记忆集成Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件Stratagate Dshstratagate-dsh最近的对话依然鲜活。较早的对话会逐渐淡化为摘要,而不是被遗忘。StrataGate 为 DeepSeek Harness 提供六层、随时间衰减的记忆,同时将持久的事件和关系沉淀为知识图谱。将你在其他 AI 中的记忆带来

README

dsh-hermes-bridge

Native adaptive intelligence for DeepSeek Harness — no Hermes or Python dependency.

dsh-hermes-bridge reimplements Hermes's adaptive intelligence layer as a standalone DSH plugin in JavaScript. It provides what Hermes provides on top of the base agent loop — persistent memory, reusable skills, skill authoring, background review, and curator — without requiring a separate Hermes installation.

What appears in DSH

CapabilityDSH surface
Persistent memory (MEMORY.md / USER.md)hermes_memory + frozen system-prompt snapshot
Reusable skills (SKILL.md catalog)hermes_skills_list, hermes_skill_view, hermes_skill_manage
Skill authoring/hermes-learn
Background memory/skill reviewoptional DSH subagent fork
Curatoroptional due-checked integration
RL trajectory capturehermes_trajectory_save + automatic turn/end capture
Trajectory compressionhermes_trajectory_compress (protected regions + LLM summarization)
Capability diagnosticshermes_status

DSH already provides the agent loop, tool calling, providers, subagents, sessions, approvals, file/bash/web tools, and model routing. This plugin adds the adaptive layer that DSH lacks natively — including the RL trajectory collection and compression pipeline for generating fine-tuning data.

Differences from v0.1.0 (bridge)

v0.1.0 was a bridge that connected to a real Hermes Python installation. v0.2.0 is a native reimplementation — no Hermes, no Python, no subprocess. Memory and skills are pure JavaScript with standard fs operations.

Install

dsh plugin --profile web add github:aalvsz/dsh-hermes-bridge

Configure

Override the package row in your profile's cordis.patch.yml:

- id: dsh/hermes-bridge
  config:
    enabled: true
    namespace: hermes
    backgroundReview: false
    curator: false
    memoryCharLimit: 2200
    userCharLimit: 1375
    memoryNudgeInterval: 10
    skillNudgeInterval: 10
    saveTrajectories: false
    model: null
    trajectoryTargetMaxTokens: 15250
    trajectorySummaryTargetTokens: 750

Defaults

  • backgroundReview, curator, and saveTrajectories are off until explicitly enabled.
  • Memory and skill files use mode 0600; directories use 0700.
  • All tools are namespaced hermes_* to avoid collisions with native DSH tools.

RL trajectory pipeline

When saveTrajectories: true, every completed conversation is converted to ShareGPT trajectory format ({from, value} with <execute>, <result>, and <think> XML tags) and appended to trajectory_samples.jsonl.

Use hermes_trajectory_compress to compress trajectories within a token budget:

  1. Protected head turns (system, human, first gpt+tool) are preserved
  2. Protected tail turns (last N turns) are preserved
  3. Middle turns are accumulated until enough savings are achieved
  4. Compressed turns are replaced with a single summary message
  5. Boundary snapping prevents splitting gpt/tool pairs

This mirrors Hermes's trajectory_compressor.py for generating SFT/DPO-ready data.

Development

npm install
npm test
npm run verify

License

MIT.