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.

Experimental Agent Team Profile — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

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

Experimental Agent Team Profile

Experimental profile bundle enabling Agent Teams over dsh-base

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

npx -y @deepseek-ai/dsh plugin --profile web add @deepseek-ai/dsh-experimental-agent-team-profile@0.1.5-alpha.2
READMECompatibilityVersions

Compatibility and provenance

Experimental Agent Team Profile is published as @deepseek-ai/dsh-experimental-agent-team-profile and currently resolves to version 0.1.5-alpha.2. 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/21/2026

Versions

0.1.5-alpha.2prerelease
9/9/2026
Show 4 more versionsCollapse versions
0.1.6-alpha.2prerelease
9/17/2026
0.1.6-alpha.1prerelease
9/15/2026
0.1.5-rc.2prerelease
9/10/2026
0.1.5-rc.1prerelease
9/10/2026

Related plugins

Loading related plugins…

Latest
0.1.5-alpha.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
13 kB
Files
8
Surface
any
License
MIT
Source
npm
GitHub
★ 231.5k
Weekly downloads
10,616
Security scan
✓ v0.1.5-alpha.2 scan passed
Last push
9/17/2026
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.

Agency Agents@michengai/dsh-agency-agentsDSH Agency Agents — 为 DeepSeek Harness 提供 321 名可召唤的专业智能体 · 321 summonable domain experts for DeepSeek HarnessHeadless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerAutomation@michengai/dsh-automationExecute coding tasks on a schedule in an independent DSH Session, with dual-entry management via a Web settings page and Agent.Auto Reviewdsh-auto-reviewSecond-model AI auto-review for DeepSeek Harness approval requests: a read-only reviewer subagent decides allow/deny on the approval answerer chain, with fail-closed fallback and full session-log audit.

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.