dsh-bridges
A DeepSeek Harness plugin that bridges projects configured for other coding agents (Claude Code, Codex, opencode, CodeBuddy Code, pi, Gemini CLI, Cursor) into DeepSeek Harness
AI 分析
核心用途是复用其他 AI 编程工具的项目配置。适合从 Claude Code 或 Cursor 等工具迁移至 DSH 的开发者。
インストール
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:yhlooo/dsh-bridgesドキュメント
README 全文を読む ↗dsh-bridges
English | 中文
This project is implemented by DeepSeek Harness.
A DeepSeek Harness plugin that bridges projects already configured for Claude Code, CodeBuddy Code, OpenCode, Codex, Pi, Gemini CLI, or Cursor into DeepSeek Harness, so existing skills, commands, memory, and hooks continue to work without any migration.
Quick start
# the general form:
# dsh plugin --profile
add dsh-bridges
# dsh --profile
# Web UI example:
dsh plugin --profile web add dsh-bridges
dsh web # = dsh --profile web
# headless (one-shot CLI) is also supported — the invoking directory is the workspace:
dsh plugin --profile headless add dsh-bridges
cd my-project
dsh --profile headless "list the skills available in your catalog"
To install from a checkout of this repository, build it first: pnpm install && pnpm build && dsh plugin --profile add .
Complete example projects for each agent tool are available in examples/ (claude-code, codebuddy-code, opencode, codex, pi, gemini-cli, cursor); open one as the session workspace to observe its skills, memory, and hooks being bridged.
Support matrix
Assets are discovered per session workspace, from project and user-level locations. All bridges are enabled by default and can be configured or disabled from any patch layer:
# example: disable the Pi bridge
- id: bridges
config:
pi:
enabled: false
| Agent tool | Skills / commands | Memory | Hooks | Permissions | MCP | Guide |
|---|---|---|---|---|---|---|
| Claude Code | ✓ | ✓ | ✓ | ✓ | ✓ | claude-code |
| CodeBuddy Code | ✓ | ✓ | ✓ | ✓ | ✓ | codebuddy-code |
| OpenCode | ✓ | ✓ | — | ✓ | ✓ | opencode |
| Codex | ✓ | ✓ | ✓ | ✓ | ✓ | codex |
| Pi | ✓ | ✓ | — | — | — | pi |
| Gemini CLI | ✓ | ✓ | ✓ | ✓ | ✓ | gemini-cli |
| Cursor | ✓ | ✓ | ✓ | ✓ | ✓ | cursor |
Resources
- Usage guide (install and verify, shared behaviors, per-tool deep dives):
docs/guides/ - Example projects, one per bridged agent tool:
examples/ - Upstream reference material (official specs):
docs/reference/ - Contributor documentation:
docs/development/