DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@deepseek-ai/dsh-experimental-agent-team-profile

Experimental Agent Team Profile

基于 dsh-base 启用 Agent Teams 的实验性配置文件包

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

npx -y @deepseek-ai/dsh plugin --profile web add @deepseek-ai/dsh-experimental-agent-team-profile@0.1.5-alpha.2
README兼容性版本

兼容性与来源证明

Experimental Agent Team Profile 以 @deepseek-ai/dsh-experimental-agent-team-profile 发布,当前版本为 0.1.5-alpha.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.5-alpha.2prerelease
2026/9/9
查看其余 4 个版本收起版本
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.2
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
13 kB
文件数
8
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 231.6k
周下载
10,616
安全扫描
✓ v0.1.5-alpha.2 扫描通过
最近提交
2026/9/17
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Headless@deepseek-ai/dsh-headlessdsh one-shot bundle:基于 dsh-base 的直接核心 Agent/Session 运行器,不包含 Host、HTTP 或浏览器层Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序Subagent Claude Code@deepseek-ai/dsh-subagent-claude-code基于官方 Agent SDK 的一次性 Claude Code 子代理提供方

README


description: "Published experimental Agent Teams profile layer over dsh-base with Team-scoped coordination tools and one-shot delegation." kind: "package-bundle"

@deepseek-ai/dsh-experimental-agent-team-profile

English | 中文

Summary

dsh-experimental-agent-team-profile is a published experimental profile layer that enables Agent Teams over @deepseek-ai/dsh-base. Its patch inserts the Team domain and Team-scoped tools, disables the overlapping global continuable-child controls, and keeps the ordinary fresh and fork delegation tools as one-shot operations. Add it explicitly to an initialized profile; no shipped profile enables it by default.

Table of Contents

  • Use this package
  • Understand the implementation
  • Further Exploration
  • Model Experience
  • Known Limitations and Deferred Work
  • Dev Note

Use this package

Install into a profile

Add the package to an initialized profile, then run a task that asks the Lead to delegate work:

dsh plugin --profile headless add @deepseek-ai/dsh-experimental-agent-team-profile
dsh --profile headless "Use Agent Teams to split this task between two teammates, wait, and summarize."

The profile must already contain @deepseek-ai/dsh-base, whose Subagent services and provider rows this layer consumes. Removing the package with dsh plugin --profile <name> remove @deepseek-ai/dsh-experimental-agent-team-profile removes the bundle from the profile's ordered layer list.

What you get

The layer adds the Agent Teams domain and its scoped creation, roster, messaging, interruption, waiting, and task-board tools. It disables the global continuable-child control rows whose tool names overlap with Team controls, while leaving subagent and subagent_fork available as one-shot delegation tools.


Understand the implementation

Implementation internals — click to expand

The package's runtime content is cordis.patch.yml. Applied after dsh-base, the patch disables tool-subagent-control and tool-subagent-list-agents; sets the fresh and fork Subagent rows to one-shot; and inserts the Team service and tool rows with explicit providers and limits.

FileRole
cordis.patch.ymlOrdered patch over dsh-base
src/index.tsEmpty module entry; the patch is the runtime content
—No runtime invariant companion is published; the package carries only a static profile patch. The Team domain and tool packages own the mutable relationships it activates.

Further Exploration

  • Experimental packages — incubation status and publication policy.
  • Agent Teams service — durable roster, messaging, and task-board behavior.
  • Agent Teams tools — the Team-scoped model tool surface.
  • Base bundle — the profile layer this patch extends.

Model Experience

Team policy and tools

What the model sees

The Team policy and schemas belong to @deepseek-ai/dsh-experimental-tool-agent-team. This bundle changes composition only: Team-scoped list_agents, send_message, and interrupt_agent replace the disabled global continuable-child controls. subagent and subagent_fork remain available as one-shot delegation tools, whose children do not receive the continuable-child report tool.

Token effect

The bundle adds the Team policy and tool schemas described by dsh-tool-team; it adds no prompt text of its own.

KV Cache effect

The bundle's composition is prefix-stable while its patch, Team identity, and configured tool schemas remain unchanged.

Known Limitations and Deferred Work

  • Opt-in only — the package is public, but no shipped CLI, Web, SDK, ACP, or Python profile enables it.
  • Shared checkout — every teammate observes the same working directory; this bundle adds no worktree isolation or filesystem locking.
  • Base profile required — the patch depends on row ids and Subagent providers supplied by dsh-base; it is not a standalone profile.

Dev Note

Working context for maintainers — click to expand

None.