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.

Agency Agents Zh Dsh Plugin — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

agency-agents-zh-dsh-plugin

Agency Agents Zh Dsh Plugin

DeepSeek Harness (dsh) plugin: registers the agency-agents-zh Chinese AI expert agent library (268 roles across 20 departments) as native skills

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

npx -y @deepseek-ai/dsh plugin --profile web add github:RHY006/agency-agents-zh-dsh-plugin#a85e713d6909d6ac5f0d82c593572ad4659db55c
READMECompatibilityVersions

Compatibility and provenance

Agency Agents Zh Dsh Plugin is published as agency-agents-zh-dsh-plugin and currently resolves to version 1.1.3. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/14/2026

Versions

1.1.3stable
9/14/2026
1.1.2stable
9/10/2026
1.1.1stable
8/24/2026
Show 1 more versionCollapse versions
1.1.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
1.1.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/14/2026
View source ↗
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

agency-agents-zh-dsh-plugin

把 agency-agents-zh(268 个中文 AI 专家角色,覆盖 20 个部门)封装成 DeepSeek Harness (dsh) 的 bundle 插件。

安装后,268 位专家会以 原生 dsh skill 注册进 skill 注册表:模型在对话中按描述自动匹配并加载对应专家角色,也可以用 /技能名 手动触发。

安装

前置要求:本机已安装 git(github: 安装依赖 pnpm 调用 git 拉取仓库)。

方式一(推荐,GitHub 托管)

dsh plugin --profile web add "github:RHY006/agency-agents-zh-dsh-plugin"

方式二(本地目录)

dsh plugin --profile web add ./agency-agents-zh-dsh-plugin

方式三(npm tarball)

npm pack --dry-run            # 确认内容
npm pack                      # 生成 agency-agents-zh-dsh-plugin-1.0.0.tgz
dsh plugin --profile web add ./agency-agents-zh-dsh-plugin-1.0.0.tgz

装完重启 dsh,然后问一句「你有哪些可用技能」即可看到全部专家。

用法

注册的 skill 名称取自文件 stem(已是合法 kebab-case),例如:

专家skill 名激活方式
前端开发者engineering-frontend-developer对话触发 / /engineering-frontend-developer
小红书运营专家marketing-xiaohongshu-operator对话触发 / /marketing-xiaohongshu-operator
安全工程师engineering-security-engineer对话触发 / /engineering-security-engineer

工作原理

  • cordis.patch.yml 作为 bundle 层向 profile 插入一行 loader,挂载 index.js。
  • index.js 在 apply() 时遍历内置的 agents.json,逐个调用 ctx.skills.register() 把专家注册为运行时 skill(source: 'runtime')。
  • 每个 skill 的 description 来自专家 frontmatter(中文),用于模型路由;content 是完整的专家人设/工作流/交付物正文;metadata 保留中文名、emoji、配色和所属部门。

重新生成 agents.json

node scripts/build.mjs <path/to/agency-agents-zh-checkout>

构建脚本递归扫描各专家目录(排除仅含文档的 strategy/),只收录带 name + description frontmatter 的 Markdown,并校验 skill 名唯一且为 kebab-case。

配置

默认注册全部 268 个专家。不想全量压给模型时,在 profile 的 cordis.patch.yml 里给该 loader 行加 config 过滤:

- id: agency-agents-zh
  config:
    categories: [engineering, marketing, design]   # 部门白名单:只注册这些
    excludeCategories: [specialized]               # 部门黑名单:剔除这些(优先于白名单)
    maxSkills: 60                                  # 总量上限:超出按列表顺序截断并告警

三者都可选、可组合;不配置 = 注册全部(向后兼容)。类型写错会启动即报错(fail loud);白名单里写不存在的部门会被忽略并告警。

部门目录名对照:

目录部门目录部门
academic学术marketing营销 (42)
design设计paid-media付费媒体
engineering工程 (42)product产品
finance金融project-management项目管理
game-development游戏开发sales销售
gisGISsecurity安全
hr人力资源spatial-computing空间计算
legal法务specialized专项 (58)
supply-chain供应链support支持
testing测试

想整体关掉插件,禁用 loader 行即可:

- id: agency-agents-zh
  disabled: true

许可

MIT。角色内容版权归上游 agency-agents 及 agency-agents-zh 所有。