By zoahdev · 2026-08-15 · Every command below was tested on Windows (Node 24, pnpm 11)
DeepSeek Harness (dsh) is the first agent product open-sourced by DeepSeek (2026-08-13, MIT). It is not a model — it is the infrastructure that lets a model use tools, run tasks, and collaborate with developers. Its core design is "everything is a plugin", powered by Cordis.
Repo: https://github.com/deepseek-ai/deepseek-harness Status: developer preview v0.1, iterating fast, breaking changes expected (official warning).
^22.19.0 || >=24.0.0 (official)Verify:
node -v
pnpm -v
npx @deepseek-ai/dsh web
Tested output (dsh 0.1.0-rc.6):
dsh web: http://127.0.0.1:3080
Open http://127.0.0.1:3080. If port 3080 is busy:
npx @deepseek-ai/dsh web --port 4099
git clone https://github.com/deepseek-ai/deepseek-harness.git
cd deepseek-harness
pnpm install
pnpm run build
pnpm dsh web
pnpm install takes a few minutes (large pnpm workspace). When running from source, the CLI boots apps/cli/src/bin.ts through tsx.
Read
AGENTS.mdat the repo root before contributing — it encodes important conventions (registrations are effects, run targeted checks before pushing, etc.).
deepseek-v4-flash (provider deepseek-official).# PowerShell
$env:DEEPSEEK_API_KEY = "sk-your-key"
Without a key the UI opens but chat fails with an auth error — expected behavior, not a bug.
generic, terminal, diff, search, web) via presentCall/presentResult.listen EADDRINUSE: address already in use 127.0.0.1:3080
Fix: --port 0 (OS picks a free port) or --port 4099.
node/pnpm not foundInstall Node, then open a new terminal. Enable pnpm with corepack enable or npm install -g pnpm.
Community plugins must target the current release train 0.1.0-rc.6. The npm latest tag of @deepseek-ai/dsh-tools still points at 0.0.1-rc.1, whose peer @deepseek-ai/dsh-user-approval@0.0.1-rc.1 depends on the unpublished @deepseek-ai/dsh-type-meta — a standalone install 404s. Pin ^0.1.0-rc.6.
dsh plugin add github:owner/repo runs the package's prepare script; pnpm refuses by default. dsh prints the exact allowBuilds: line to add to the profile's pnpm-workspace.yaml. Only allow it for source you trust.
Q: Does dsh need a GPU? No. It calls the DeepSeek API (or any OpenAI-compatible provider).
Q: Does the official repo accept PRs? Not yet — see CONTRIBUTING.md. Discussions, plugins, tutorials, and answering questions are the official contribution paths.
Q: web vs --profile web? dsh web is an alias of dsh --profile web. Use dsh plugin --profile web add <pkg> to install plugins into the web profile.
Next: Understanding dsh Architecture: Everything is a Plugin and Cordis