Install
Inside DeepSeek Harness, with dsh-market
dsh plugin --profile web add dshmarket
Or from the command line
dsh plugin --profile web add dsh-repo-setup
Installing runs third-party code with your own permissions — it can read your files, use your credentials and reach the network. Review the source first, and pin a commit (github:owner/repo#sha) when you can.
README
Repo bootstrap guidance for the DeepSeek Harness (DSH) — the counterpart of Anthropic's claude-code-setup.
Registers one read-only tool, repo_setup_scan: it inspects a project
directory (language stack, test setup, docs, git, Docker and database hints)
and returns setup recommendations — which DSH skill plugins to install, which
MCP servers to mount, which hygiene files to create. It never modifies
anything.
Install
# npm
dsh plugin --profile web add dsh-repo-setup
# GitHub
dsh plugin --profile web add github:gongyijie85/dsh-repo-setup
# Local folder (development)
dsh plugin --profile web add D:\plugins\dsh-repo-setup
Restart the profile (dsh web). The model then calls repo_setup_scan
automatically when entering a new or unfamiliar repository (or just ask:
"scan this repo and tell me how to set it up").
Tool: repo_setup_scan
| Parameter | Description |
|---|---|
path |
Project directory to scan. Defaults to the current working directory. |
Outputs a Markdown report:
- Detected stack — stack markers (package.json / pyproject.toml / Cargo.toml / go.mod / Dockerfile, ...) including frontend frameworks and test runners
- Repo hygiene — missing AGENTS.md, git not initialized, no tests, database hints
- Recommended installs — one-command installs:
mattpocock-skills-dsh(grilling / to-spec / to-tickets / tdd / code-review workflow)superpowers-dsh(planning → TDD → review methodology)dsh-ponytail-skills(anti-over-engineering)dsh-claude-mem(optional: cross-session memory)dsh-mcp-manager(to mount the MCP servers below)- MCP servers: context7 (library docs), playwright (frontend), postgres, github (depending on what the scan detects)
How it works
- Bundle layer —
cordis.patch.ymlinserts a plugin row over the dsh-base layer. - Tool —
lib/index.jsregistersrepo_setup_scanwithdefineToolfrom@deepseek-ai/dsh-tools; the scan is read-only (a bounded set of known files + top-level directory listing), with no writes at all. - Zero runtime dependencies — Node built-ins plus the harness-injected
@deepseek-ai/dsh-toolspeer dependency.
Development / verification
node --check lib/index.js
node scripts/verify-tool.mjs # fake-ctx registration + scan against real dirs
License
MIT. See LICENSE.