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.

Sage Meta — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

sage-meta

Sage Meta

Sage meta plugin: delivery self-check before the agent finishes a turn

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

npx -y @deepseek-ai/dsh plugin --profile web add sage-meta@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Sage Meta is published as sage-meta and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/15/2026

Versions

0.1.1stable
8/14/2026
0.1.0stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
14.8 kB
Files
6
Surface
any
License
Apache-2.0
Source
npm
GitHub
★ 0
Weekly downloads
34
View source ↗Project homepage ↗
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 agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

README

sage-meta · DSH 的交付自检插件

让 DeepSeek Harness 的 agent 在交付前自检一次——先验证再交卷。

作用

监听 agent/turn-stopping 事件:agent 认为回合结束时,注入一条自检提示,让它确认:

  • 结果真的完成了任务要求吗?
  • 有没有遗漏的细节或未验证的假设?
  • 发现遗漏就先补上

每 agent 每回合只触发一次(防重入),验证通过自然结束,不无限循环。

实测效果:agent 第一轮漏查了记忆系统直接回答「不知道」,自检环节发现自己遗漏,补查后答对。这就是这道题存在的意义。

Sage 三件套的第二道题(我做得对吗)。搭配 sage-persona(人格)和 sage-mem(记忆)使用。

安装

在你的 DSH profile 的 package.json 里加:

{
  "dependencies": {
    "sage-meta": "github:gezi-wen/sage-meta"
  },
  "dsh": {
    "profile": {
      "bundles": ["sage-meta"]
    }
  }
}

pnpm install 后重启 DSH。

实现

函数式插件,监听 agent/turn-stopping(serial 事件),用 agent.inject() 注入自检提示(UserMessage 对象,source 标记为 plugin)。

License

MIT