DeepSeek Harness Plugin

gongyijie85/dsh-repo-setup

Stars ★ 0 Category Tools & Capabilities Added 2026-08-16 npm dsh-repo-setup

Read-only repo bootstrap scanner (repo_setup_scan tool): detects stack/tests/docs/git/db and recommends plugins, MCP servers and hygiene files.

Install

# from npm (prebuilt)

dsh plugin --profile web add dsh-repo-setup

# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)

dsh plugin --profile web add github:gongyijie85/dsh-repo-setup

Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).

README

npm version GitHub release License: MIT

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 layercordis.patch.yml inserts a plugin row over the dsh-base layer.
  • Toollib/index.js registers repo_setup_scan with defineTool from @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-tools peer dependency.

Development / verification

node --check lib/index.js
node scripts/verify-tool.mjs   # fake-ctx registration + scan against real dirs

License

MIT. See LICENSE.

Content from the project README on GitHub ↗

Links

More in this category

View the whole category →