DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Prospector — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-prospector

Prospector

GitHub research assistant for DeepSeek Harness: model-facing tools to search repositories, read READMEs/source, and clone candidates, so the agent can prospect open-source solutions for an idea and synthesize an implementation plan.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:Perfirstvito/dsh-prospector#ac108dee911e09c66d9ba47e8a2bdbb05676a1e8
READMECompatibilityVersions

Compatibility and provenance

Prospector is published as dsh-prospector and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/3/2026

Versions

0.1.0stable
9/3/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/3/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-prospector

English | 中文

GitHub research ("prospecting") assistant for DeepSeek Harness — gives the agent model-facing tools to search repositories, read READMEs and source files, list file trees, and clone candidates, then synthesize an implementation plan from the best open-source solutions it finds.

Scenarios

  • Before building something new — prospect open source first: what exists, what each candidate contributes, and what still needs building.
  • Technology selection — compare candidates on activity, structure, and adoptability.
  • Deep due diligence — clone and read core source for integration, license, and maintenance risk.

Tools

ToolDoes
github_search_repos(query, limit?)Search repositories; supports topic:/language:/stars:>N qualifiers.
github_get_readme(owner, repo)Fetch a README, bounded by maxReadmeBytes.
github_read_file(owner, repo, path)Fetch one file, bounded by maxFileBytes.
github_list_tree(owner, repo)List file paths (blobs only), bounded by maxTreePaths.
github_clone_repo(owner, repo, into?)Shallow-clone into the workspace (into = topic subfolder) and return the local path.

The agent combines these (search → read README/source → clone → read deeply); the plugin only supplies the eyes.

Commands

/research [low|medium|high] <idea>

Research an idea end to end and propose a plan. The optional leading tier (default medium) sets search breadth and read depth. Each idea gets its own subfolder under the workspace.

/gh-login

Report the GitHub authentication state and show login steps when unauthenticated.

Depth tiers

TierSearchRead depthClone
lowtop 5README onlyno
mediumtop 10README + key files + tree of top 1-21-2 most promising
hightop 20, qualifiers + paginationcore source across several files + full treesseveral

Installation

Mount it in the composition; the shipped cordis.patch.yml inserts it automatically when installed as a bundle:

- name: 'dsh-prospector'
  config:
    client: 'rest'               # 'rest' (default) or 'gh'
    ghPath: 'gh'                 # absolute path if gh is not on PATH
    workspaceRoot: '~/dsh-prospector'  # optional; default is ~/dsh-prospector

Mount it beside a subprocess provider and the filesystem tools.

Authentication

The plugin never stores a token. Read operations resolve a token from GH_TOKEN/GITHUB_TOKEN, else gh auth token. Run gh auth login once (device flow → github.com/login/device), or set GH_TOKEN.

Workspace

Clones live under a dedicated workspace root (~/dsh-prospector by default), one subfolder per research topic:

~/dsh-prospector/
  <topic-slug>/          # one folder per /research idea
    <owner>__<repo>/     # shallow clones

The workspace root and each topic folder are created automatically on first use.

Configuration

FieldDefaultMeaning
clientrestRead backend: rest (in-process HTTP) or gh (GitHub CLI). Clone always uses git.
ghPathghPath to the gh executable.
workspaceRoot~/dsh-prospectorRoot where per-topic folders and clones live.
maxReadmeBytes200000Byte budget per README.
maxFileBytes100000Byte budget per file.
maxTreePaths2000Max file paths per tree listing.
searchLimit10Default search result count.
maxAttempts3Max REST attempts (retries on rate-limit/server/network errors).
fallbackToGhtrueFall back to gh when REST hits an infrastructure error.

Notes & cautions

  • gh and git are required — gh for auth/token, git for cloning.
  • GitHub rate limits — the Search API allows ~30 requests/minute authenticated; broad/deep research is bounded by it.
  • Read-only apart from clones — the plugin never mutates the model request or session surface; only clones write to the workspace.
  • Re-cloning into the same folder fails — reuse a topic folder only after removing the previous clone.
  • No settings panel / tier-picker UI yet — configuration is via cordis.yml; the interactive tier selector and settings card depend on DSH's client-bundle tooling for external plugins.

License

MIT