claudeers.
// Claude Plugins

dsh-plugin-cc

Bridge Deepseek-harness into Claude Code for review, critique, delegation, and session import.

// Claude Plugins[ cli ][ api ][ claude ]#claude#claude-code#claude-code-plugin#dsh#dsh-plugin#dsh-plugins#pluginsMIT$open-sourceupdated 8 days ago

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up dsh-plugin-cc (claude-plugin project) into my current project.
Found on https://claudeers.com/dsh-plugin-cc
Repo: https://github.com/cpj-dev/dsh-plugin-cc
Homepage/docs: —
Detected install method: claude-plugin → /plugin install dsh-plugin-cc@cpj-dev/dsh-plugin-cc
Category: plugins. Platforms: cli, api.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
unknown; community-verified: false. Confirm the source before running anything.
// or install directly (claude-plugin)

Unverified / not recently updated — review before pasting a run-this config.

/plugin marketplace add cpj-dev/dsh-plugin-cc
/plugin install dsh-plugin-cc@cpj-dev/dsh-plugin-cc
// or clone
git clone https://github.com/cpj-dev/dsh-plugin-cc

// compatibility

Platformscli, api
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageJavaScript

dsh-plugin-cc

English | 简体中文

A Claude Code plugin marketplace that bridges to the DeepSeek Harness (dsh) agent: code review, adversarial critique, task delegation, background runs, and multi-turn resumable dsh sessions — all from Claude Code slash commands.

Built against @deepseek-ai/[email protected] (developer preview; the SDK JSON-RPC server this plugin needs is published separately as @deepseek-ai/dsh-sdk-jsonrpc-server and is outside the CLI dependency closure). The exact DSH behaviors this plugin depends on are pinned in docs/dsh-compat.md; re-verify that table when upgrading dsh.

Quick start

Plugin commands require Node >= 20 and a DEEPSEEK_API_KEY. Installing dsh via /dsh:setup also needs Node >= 22.19 (harness floor), npm, and pnpm (corepack enable) because dsh plugin add forwards to pnpm.

# 1. Install the plugin
/plugin marketplace add cpj-dev/dsh-plugin-cc
/plugin install dsh@deepseek-dsh

# 2. One command, one time: /dsh:setup does everything
#    Installs @deepseek-ai/[email protected] from npm, then adds the SDK
#    JSON-RPC server (and its peers) to the multi-turn cc profile.
/dsh:setup

# 3. In any git repository:
/dsh:check          # readiness probe
/dsh:review         # read-only review of your local changes

Have your own built deepseek-harness checkout? /dsh:setup --harness <path> uses it instead of npm (the directory must already be pnpm install'd and pnpm run build:lib'd). A later /dsh:setup with no args migrates that machine to the npm pin; pass --harness again to keep the checkout. Have a built dsh already? DSH_BINARY selects that executable; plain /dsh:setup still creates the cc profile from the pinned npm SDK-server package. Uninstalling: remove the plugin, the plugin data directory (the npm prefix lives there), and ~/.dsh/profiles/cc.

Commands

CommandWhat it doesNeeds setup?
/dsh:checkReadiness probe (dsh, npm pin / checkout, credentials, profile, broker)no
/dsh:setupInstall/link the pinned npm CLI (or --harness <built-checkout>) and create the multi-turn cc profile
/dsh:review [focus]Read-only code review of local changesno
/dsh:critique [focus]Structured adversarial design critiqueno
/dsh:run <task>Run a task (read-only by default; --write, --session, --resume, --model, --effort, --background)only for --session/--resume
/dsh:delegate <task>Background delegation via the dsh-delegate subagentno
/dsh:importTransfer this conversation into a resumable dsh sessionyes
/dsh:runs [id]List runs / one run's statusno
/dsh:show [id]Stored result of a finished runno
/dsh:stop [id] / --brokerKill a run's process tree / the shared brokerno

Full command semantics: docs/commands.md. Installation and runtime failures are covered in docs/troubleshooting.md.

Project scope — what each part is and how to use it

.claude-plugin/marketplace.json   Marketplace manifest. Users point /plugin marketplace add here.
plugins/dsh/                      The single plugin this marketplace ships.
  .claude-plugin/plugin.json      Plugin identity; bump `version` on every release.
  commands/*.md                   Slash-command surfaces. Each file = one /dsh:* command; the body
                                  tells Claude exactly which bridge invocation to run and how to
                                  present the output. Edit these to change UX wording, never logic.
  agents/dsh-delegate.md          Background-delegation subagent. Claude invokes it for substantial
                                  tasks; it drives the bridge and reports the run id/result.
  skills/                         Internal skills (progressive disclosure for Claude itself):
    dsh-delegate-runtime/         the bridge call contract — read by the agent before first use
    dsh-run-output/               presentation rules for bridge results
  hooks/hooks.json                SessionStart/SessionEnd wiring. Start exports DSH_CC_SESSION_ID /
                                  DSH_CC_TRANSCRIPT_PATH via CLAUDE_ENV_FILE; End cancels this
                                  session's runs. No edits needed unless Claude Code's hook API moves.
  scripts/dsh-bridge.mjs          The only entry point commands call. One subcommand per capability;
                                  stdout is user-facing. Run `node scripts/dsh-bridge.mjs` for usage.
  scripts/dsh-broker.mjs          Per-workspace daemon owning one live `dsh --profile cc` SDK runtime
                                  — the only way DSH sessions can span multiple turns. Started on
                                  demand by the bridge; never start it manually.
  scripts/session-lifecycle-hook.mjs  Hook implementation behind hooks.json.
  scripts/lib/                    Implementation layers; dsh.mjs is the only file that knows how to
                                  invoke DeepSeek Harness, broker-client.mjs the only one that talks
                                  to the broker. Everything else is plumbing (state, jobs, git, render).
  prompts/*.md                    Prompt templates ({{VAR}} interpolation) for critique and import.
  schemas/review-output.schema.json  JSON contract embedded into critique prompts.
docs/                             The documentation set (see reading order below).
tests/                            node:test suite with a fake `dsh` fixture; `npm test`.

Documentation — progressive disclosure

Read in this order; stop at the layer you need.

  1. This README — what exists and how to invoke it.
  2. docs/commands.md — full user-facing command semantics and flags.
  3. docs/troubleshooting.md — setup, credentials, profile, broker, and timeout recovery.
  4. docs/architecture.md — the two drive paths (one-shot headless vs broker) and why each design decision was forced by a DSH fact.
  5. docs/dsh-compat.md — the pinned DSH behavior table; the first thing to re-verify on a dsh upgrade.
  6. Deep dives: docs/broker.md, docs/state-and-jobs.md.
  7. Contributing: docs/development.md, docs/testing.md.

docs/README.md is the maintained index with per-document ownership rules. Simplified Chinese user documentation starts at docs/zh-CN/README.md.

Known limitations (v1)

  • No mid-run approvals: permissions are decided before launch (--write or not). DSH's interactive approval seam needs a UI the plugin doesn't have.
  • Fresh one-shot runs are not resumable; only broker-backed runs (--session, --resume, /dsh:import) record session ids, and those sessions live only as long as the broker process.
  • Stop = kill: the DSH SDK wire has no per-turn cancel; stopping a mid-turn broker run discards the broker's in-memory sessions.
  • /dsh:import is a weak import (compressed text digest), not a native history replay.
  • POSIX only (unix sockets, pgrep); Windows is out of scope for v1.

License

MIT — see LICENSE. Design provenance is credited in NOTICE.

Community and support

// faq

What is dsh-plugin-cc?

Bridge Deepseek-harness into Claude Code for review, critique, delegation, and session import.. It is open-source on GitHub.

Is dsh-plugin-cc free to use?

dsh-plugin-cc is open-source under the MIT license, so it is free to use.

What category does dsh-plugin-cc belong to?

dsh-plugin-cc is listed under plugins in the Claudeers registry of Claude-compatible tools.

3 views
10 stars
unclaimed
updated 8 days ago

// embed badge

dsh-plugin-cc on Claudeers
[![Claudeers](https://claudeers.com/api/badge/dsh-plugin-cc.svg)](https://claudeers.com/dsh-plugin-cc)

// retro hit counter

dsh-plugin-cc hit counter
[![Hits](https://claudeers.com/api/counter/dsh-plugin-cc.svg)](https://claudeers.com/dsh-plugin-cc)

// reviews

// guestbook

0/500

// related in Claude Plugins

🔓

A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.

// pluginsmultica-ai/203,096[ claude ]
🔓

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explainin…

// pluginsanthropics/Python141,574[ claude ]
🔓

"CLI-Anything: Making ALL Software Agent-Native" -- CLI-Hub: https://clianything.cc/

// pluginsHKUDS/Python47,363Apache-2.0[ claude ]
🔓

financial-services — a Claude ecosystem project on GitHub.

// pluginsanthropics/Python34,276Apache-2.0[ claude ]
→ see how dsh-plugin-cc connects across the ecosystem