DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Base — DeepSeek Harness 插件(DSH Plugin)
← Plugins

@deepseek-ai/dsh-base

Base

作为配置文件捆绑包的共享 dsh 核心:基于基础配置文件的配置文件的第一补丁层,将核心行插入空配置文件根中

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

npx -y @deepseek-ai/dsh plugin --profile web add @deepseek-ai/dsh-base@0.0.1-rc.1
README兼容性版本

兼容性与来源证明

Base 以 @deepseek-ai/dsh-base 发布,当前版本为 0.0.1-rc.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.0.1-rc.1prerelease
2026/8/10
查看其余 22 个版本收起版本
0.1.6-alpha.2prerelease
2026/9/17
0.1.6-alpha.1prerelease
2026/9/15
0.1.5-rc.2prerelease
2026/9/10
0.1.5-rc.1prerelease
2026/9/10
0.1.5-alpha.2prerelease
2026/9/9
0.1.5-alpha.1prerelease
2026/9/8
0.1.3-alpha.2prerelease
2026/9/7
0.1.2-rc.1prerelease
2026/9/3
0.1.2-alpha.5prerelease
2026/9/2
0.1.2-alpha.4prerelease
2026/9/1
0.1.2-alpha.3prerelease
2026/8/31
0.1.2-alpha.2prerelease
2026/8/30
0.1.1-rc.2prerelease
2026/8/21
0.1.1-rc.1prerelease
2026/8/21
0.1.0-rc.8prerelease
2026/8/19
0.1.0-rc.7prerelease
2026/8/17
0.1.0-rc.6prerelease
2026/8/13
0.1.0-rc.3prerelease
2026/8/13
0.1.0-rc.2prerelease
2026/8/13
0.0.1-rc.5prerelease
2026/8/12
0.0.1-rc.3prerelease
2026/8/12
0.0.1-rc.2prerelease
2026/8/11
最新版
0.0.1-rc.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
34.1 kB
文件数
11
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
298,644
查看源码 ↗项目主页 ↗
README Badge

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

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

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

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

README

@deepseek-ai/dsh-base

English | 中文

The shared dsh core as a profile bundle: cordis.patch.yml inserts every base plugin row — model adapters, the shared agent-default-model selection, tools, persistence, policy, settings/credentials, telemetry, and host-level subagent providers — over the empty profile root, as the first layer of every profile's dsh.profile.bundles list. Codex and Claude Code providers load dormant; Agent Presets independently decide whether their agent contributes either model-facing delegation tool. Later bundle layers (e.g. dsh-web-app) and the user's profile cordis.patch.yml override these rows by id; a patch replaces a row's whole config, so mode-specific values live in mode bundles, not here. The package has no runtime API; the profile composer resolves the patch through the dsh.bundle.patch manifest field, never through code.

Windows hosts booting a shipped profile additionally receive windows.cordis.patch.yml: it disables the POSIX-only bash stack (bash-sandbox/tool-bash) and inserts the sandbox-confined PowerShell stack (@deepseek-ai/dsh-pwsh-sandbox, @deepseek-ai/dsh-tool-pwsh). The permission surface stays exactly as on POSIX: sandbox/sandbox-policy enforce the file-effect policy through the Windows ACL restricted-token runner (the win32 chain of dsh-sandbox-local → @deepseek-ai/dsh-sandbox-windows-acl), the permission switcher and the approval service run unchanged, and fs-sandbox keeps fencing ctx.fs writes — mounting dsh-fs-local alongside it would double-register ctx.fs and fail the load. The launcher applies the layer between the bundle layers and the user layers on win32 hosts; a Windows host that prefers the unconfined local pwsh executor or full access overrides these rows through its profile or home cordis.patch.yml (the bash-restore recipe must be complete: disable pwsh-sandbox/tool-pwsh AND re-enable bash-sandbox/tool-bash — both executor families register the same bash service, so an incomplete recipe fails loud at load). POSIX hosts never receive it.

The row set and its rationale are documented inline in the patch file; the generated composition graph renders it.

Model Experience

Indirectly, through the inserted rows: this bundle selects the shipped persona-less prompt base, tool set, and DeepSeek adapter that mode bundles specialize, and contributes no model-visible text of its own.

KV Cache effect

None directly; each inserted row's package owns its effect.

Known Limitations and Deferred Work

  • A patch replaces whole row configs — profile overrides must restate every field a row keeps; there is no deep-merge layer.
  • Claude's SDK platform CLI remains in the Profile install closure — the base bundle depends on the Claude provider, whose production path resolves the host claude; removing the SDK's unused optional payload is deferred to the product installation-closure follow-up.
  • The Windows temp grant is a private per-session subdirectory — workspace-write confines writes to the workspace plus the session's own temp subdirectory (<temp>\dsh-<hash>, TMP/TEMP rewritten for confined children); read-only grants nothing. See @deepseek-ai/dsh-sandbox-windows-acl.