YTyangtao666/dsh-skills-bridge
Bring your Claude Code skills into DeepSeek Harness — zero migration, one plugin. 一个插件把 Claude Code 技能桥接进 DeepSeek Harness
项目介绍Project Overview
dsh-skills-bridge 是一个 DSH 插件,把 ~/.claude/skills 与 ~/.agents/skills 挂载为 SkillProvider,自动发现 SKILL.md、归一化 frontmatter,并支持热重载与冲突优先级。适用于想在 DeepSeek Harness 中直接复用 Claude Code 技能库、无需迁移的场景。注意:仅支持扁平 frontmatter,技能正文内的工具引用需模型自行适配,网络文件系统应关闭 watch。
dsh-skills-bridge is a DSH plugin that mounts ~/.claude/skills and ~/.agents/skills as a SkillProvider. It discovers SKILL.md files, normalizes frontmatter into DSH format, supports hot reload, and handles name-collision ranking. Use it when you want DeepSeek Harness to reuse existing Claude Code skills without migration. Caveat: only flat frontmatter is supported; tool references inside skill bodies are passed through verbatim, and watch should be disabled on network filesystems.
请帮我了解并安装插件:【dsh-skills-bridge】【https://github.com/YTyangtao666/dsh-skills-bridge】
把上面这条消息直接发给当前会话里的 DSH,让它帮你了解并安装。安装命令不一定准确,发给 DSH 更稳。Send this message to DSH in your current session. CLI install commands may not be accurate across systems — DSH will figure it out for you.
或使用命令行安装(适合开发者)Or use CLI install (for developers)
命令行安装CLI Install
dsh plugin --profile web add dsh-skills-bridge
把 YTyangtao666/dsh-skills-bridge 加入你的 DSH 配置(web profile)即可启用。
READMEREADME
dsh-skills-bridge
Bring your Claude Code skills into DeepSeek Harness — zero migration, one plugin.

Real session, dsh v0.1.0-rc.8: the agent lists its skill catalog — pdf-report arrives from claude-bridge (this plugin) with its original ~/.claude/skills/ path, while using-superpowers comes from the native filesystem provider.
If you maintain a ~/.claude/skills/ directory, you already own a skill library. This plugin mounts it into DeepSeek Harness as a first-class SkillProvider — every SKILL.md is discovered, its frontmatter is normalized to the DSH format, and the model can invoke it exactly like a native skill.
~/.claude/skills/pdf-report/SKILL.md ─┐
~/.claude/skills/tiktok-bio-scraper/... ├─► dsh-skills-bridge ─► ctx.skills ─► agent
~/.agents/skills/using-superpowers/ ─┘ (provider: claude-bridge)
Why
DeepSeek Harness has an elegant skill system (ctx.skills), but its ecosystem is one week old. Claude Code's skill ecosystem is huge — hundreds of community skills, and every power user has a personal ~/.claude/skills folder. This bridge lets DSH inherit that entire library on day one.
What it handles
| Claude Code frontmatter | Mapped to | Notes |
|---|---|---|
name, description |
same | required, same semantics |
when_to_use / when-to-use |
whenToUse |
routing guidance for the model |
disable-model-invocation |
invocation.modelInvocable: false |
user-only skills |
user-invocable |
invocation.userInvocable |
command-surface control |
allowed-tools, license, custom keys |
preserved in metadata |
never dropped |
- Conflict policy — bridge skills register at rank
250: project-local DSH skills (100/200) still win on name collisions; user-level defaults (400/500) yield to the bridge. - Hot reload — optional filesystem watcher invalidates the catalog when you edit a skill.
- Zero dependencies — pure
node:fs, no npm runtime deps.
Install
dsh plugin --profile web add dsh-skills-bridge
That's it — the bundle's patch layer self-registers. Restart your profile and the skills from ~/.claude/skills and ~/.agents/skills appear in the catalog (source: claude-bridge).
Configuration
Override via your profile's cordis.patch.yml:
- id: skills-bridge
name: dsh-skills-bridge
config:
skillDirs: [] # extra dirs to scan (in addition to defaults)
includeDefaultRoots: true # ~/.claude/skills + ~/.agents/skills
watch: true # hot-reload on file changes
providerName: claude-bridge
Verify it works
Ask the agent: "list every skill in your catalog and its provider source". Skills bridged from Claude Code show claude-bridge as provider and their original ~/.claude/skills/... path.
Limitations
- Flat frontmatter only (the subset real-world SKILL.md files use); deeply nested YAML is skipped with a warning, matching native provider behavior.
- Skill bodies are passed through verbatim — tool references inside a skill body (e.g. Claude Code's
Read/Bashtools) are the model's business to adapt; DSH exposes its own equivalents. - The watcher is
fs.watch-based; on network filesystems setwatch: false.
License
MIT
nexu-io/open-design
freestylefly/awesome-gpt-image-2
anywhere-labs/dsh-desktop
walkinglabs/learn-harness-engineering
awesome-dsh-plugin/awesome-dsh-plugin
MemTensor/MemOS