DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Prompt — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@dsh-pi/prompt

Prompt

适用于 DeepSeek Harness (dsh-pi) 的 pi 风格系统提示词。一个 Cordis 插件包,用 pi 的最小核心、工具列表和指南风格替换系统提示词。

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

npx -y @deepseek-ai/dsh plugin --profile web add @dsh-pi/prompt@0.1.0
README兼容性版本

兼容性与来源证明

Prompt 以 @dsh-pi/prompt 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/23

版本

0.1.0stable
2026/8/14
最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
7.8 kB
文件数
5
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
31
最近提交
2026/8/18
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

README

@dsh-pi/prompt

pi-style system prompt for DeepSeek Harness (dsh), aka dsh-pi.

Transplants pi's prompt philosophy into dsh as a Cordis plugin bundle:

  • complete mode — the model sees only this section as its system prompt (dsh's default identity / tool-guidance text is replaced)
  • pi-style persona — You are an expert coding assistant operating inside dsh-pi...
  • tool one-liners — Available tools: list in pi's format
  • guidelines — concise responses, clear file paths, small precise changes, verify with tests
  • cwd line — injected as a dynamic PromptContext

Zero dependencies: the plugin only uses ctx.systemPrompt, which ships in the @deepseek-ai/dsh-base bundle.

Install into a profile

# from anywhere, with dsh on PATH:
dsh plugin --profile web add file:/abs/path/to/dsh-pi-prompt     # or an npm/git spec

Then register the bundle in the profile's manifest:

# edit ~/.dsh/profiles/<name>/package.json:
#   "dsh": { "profile": { "bundles": [ "@deepseek-ai/dsh-base", "@deepseek-ai/dsh-web-app", "@dsh-pi/prompt" ] } }

Restart the profile: dsh web (or dsh --profile <name>). Done — the system prompt is now pi-style.

dsh plugin --profile <name> add <pkg> forwards pnpm add into the profile directory (~/.dsh/profiles/<name>), so the bare package name resolves from the profile's node_modules. Any other profile or machine repeats the two steps above; sessions/config stay per-profile.

Configure

The bundle's patch inserts row id dsh-pi-prompt. Override it from a higher patch layer (e.g. the profile's own cordis.patch.yml):

- id: dsh-pi-prompt
  config:
    complete: true          # default; false keeps dsh's other prompt sections
    persona: "Your custom persona text"   # override the whole persona
    includeCwd: false       # drop the "Current working directory" line

Patch files are HMR'd — changes apply without a restart.

Publish

npm publish --access public   # from this directory
# then on any machine: dsh plugin --profile web add @dsh-pi/prompt

Layout

FileRole
index.jsCordis plugin (default export; inject: ['systemPrompt'])
cordis.patch.ymlbundle patch — inserts the dsh-pi-prompt row
package.jsondeclares dsh.bundle.patch

License

MIT