DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Agent Extension — DeepSeek Harness 插件(DSH Plugin)
← Plugins
A

dsh-agent-extension

Agent Extension

用于工作区命令、技能和路径范围规则的 DeepSeek Harness 插件。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:SugarFatFree/dsh-agent-extension#3dd07e4dff4df10c64f300ac8785f8cdcbd67211
README兼容性版本

兼容性与来源证明

Agent Extension 以 dsh-agent-extension 发布,当前版本为 0.1.5。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.5stable
2026/9/23
0.1.4stable
2026/9/21
0.1.0stable
2026/9/21
最新版
0.1.5
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/23
查看源码 ↗
README Badge

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

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

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

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

README

dsh-agent-extension

中文文档

A DeepSeek Harness (DSH) plugin that discovers reusable Markdown slash commands, skills, and path-scoped rules from a project and the current user's configuration directories.

Features

  • Discovers project-level and user-level commands, skills, and rules.
  • Supports both .dsh and .agents directory conventions.
  • Resolves duplicate definitions predictably through documented precedence.
  • Registers Markdown commands as DSH slash commands.
  • Supplies skills through DSH's skills provider API.
  • Injects matching path-scoped rules after relevant workspace file activity.
  • Works with nested definitions up to six directories below each discovery root.

Requirements

  • DeepSeek Harness with a web profile.
  • pnpm, which DSH uses for profile plugin management.

Install

Install directly from GitHub with DSH's native plugin command:

dsh plugin --profile web add github:SugarFatFree/dsh-agent-extension

DSH recognizes this package as a plugin because its package.json declares dsh.bundle.patch. The command installs it into the selected profile and adds it to dsh.profile.bundles automatically.

Restart the DSH Web process and refresh the browser after installation. Create a new session or resume an existing one to refresh its slash-command catalog.

Distribution status

This project is currently distributed from GitHub only; it is not published to npm. GitHub installation is fully supported and does not require an npm account:

dsh plugin --profile web add github:SugarFatFree/dsh-agent-extension

A future npm release may provide a shorter package-name install command, but npm publication is optional and does not affect DSH compatibility or catalog listing.

Local development install

From this repository directory:

dsh plugin --profile web add .

After changing a local file: dependency, run pnpm install --force from the Web profile directory to refresh its installed node_modules copy, then restart DSH Web.

Discovery roots

For a session, the project root is the nearest ancestor containing .git. If none exists, the session working directory is used.

TypeProject rootsUser roots
Commands<project>/.dsh/commands/**, <project>/.agents/commands/**~/.dsh/commands/**, ~/.agents/commands/**
Skills<project>/.dsh/skills/**, <project>/.agents/skills/**~/.dsh/skills/**, ~/.agents/skills/**
Rules<project>/.dsh/rules/**, <project>/.agents/rules/**~/.dsh/rules/**, ~/.agents/rules/**

Definitions may be nested up to six levels. For example, .agents/skills/team/review/SKILL.md and .dsh/commands/release/prepare.md are discovered.

Precedence

When definitions conflict, the first result wins in this order:

  1. Project .dsh
  2. Project .agents
  3. User ~/.dsh
  4. User ~/.agents

Commands use their command name as the conflict key. Skills use their skill name. Rules use their relative path below the relevant rules directory.

Commands

Each Markdown file under a commands root becomes a slash command. Its name is resolved from YAML frontmatter name, then an H1 such as # /release - Release, then the filename.

---
name: release
description: Prepare a release
---

Read the release checklist and prepare the release notes.

Entering /release optional arguments starts a normal agent turn with the command body and supplied arguments as task instructions.

Command roots are watched for Markdown additions, edits, deletions, and nested directory changes. After adding .agents/commands/aa.md, an already-open session receives /aa without restarting DSH Web; the command menu updates through DSH's live command-change event. Refresh the browser only if its connection was interrupted.

Skills

A skill is either a Markdown file or a directory bundle containing SKILL.md. Skills require standard YAML frontmatter with a kebab-case name and description.

---
name: api-review
description: Review API compatibility
whenToUse: Before publishing a changed API
---

Review the changed API surface.

The optional disable-model-invocation, user-invocable, and metadata frontmatter fields are passed through to DSH. Skills are exposed through DSH's Skills catalog and / skill source, not the command-only source; unreadable files in one discovery root are skipped so they do not hide skills from other roots.

Path-scoped rules

A rule is a Markdown file under a rules root whose YAML frontmatter contains a non-empty paths list. Markdown files without paths, including README.md, are ignored.

---
name: frontend-conventions
paths:
  - "code/frontend/**"
  - "web/**"
---

Use the established component and accessibility conventions.

A matching rule is injected once, immediately before the next model step after the agent successfully reads, writes, or edits a matching workspace file. Patterns are evaluated relative to the project root.

Verify installation

Run the built-in command in an agent session:

/dsh-extension-status

It reports the calling session's working directory plus discovered commands, skills, and rules. Discovered project commands are registered in the session command directory and appear in the / menu.

License

MIT