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.

Wo Github — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-wo-github

Wo Github

Workspace Overview GitHub tab: an About card, the repository README rendered as markdown, and the default-branch commit history with per-file patches, all for the workspace's github.com remote.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:joao-paulo-santos/dsh-wo-github#47155fe1ccb7dcd468907c9ed98b5ad922c44bcd
READMECompatibilityVersions

Compatibility and provenance

Wo Github is published as dsh-wo-github and currently resolves to version 0.2.3. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/30/2026

Versions

0.2.3stable
8/30/2026
0.2.2stable
8/30/2026
0.2.1stable
8/29/2026
Show 1 more versionCollapse versions
0.2.0stable
8/29/2026

Related plugins

Loading related plugins…

Latest
0.2.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/30/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-wo-github

A DeepSeek Harness (DSH) plugin: a GitHub subtab in the Workspace Overview tab, presenting the current workspace's repository as if you were on the site. Local first: commits, diffs, and the README come from the workspace's own clone.

Three panes:

  • Overview — the About card: description, topics, stars/watchers/ forks/issues, language, license, default branch, homepage, last push.
  • README — the repository README rendered as markdown (through dsh-md-view), with relative links and images resolved against the repo.
  • Commits — the checked-out branch's history, newest first, paginated. Picking a commit shows its full message, +/− stats, and every changed file as a unified patch with true line numbers; word-level highlights come from dsh-diff-view when installed.

No git clone and no github.com remote? The tab shows a quiet empty state. A clone WITHOUT a github.com remote (gitlab, local-only git) still gets README and Commits, with branch and last-commit facts on the About pane in place of stars.

How it fetches

Local first — the host half runs git in the workspace clone:

  • Commits come from git log, commit diffs from git show, the README from the committed file (git show HEAD:README.md). No rate limits, works offline, works on any git host.
  • api.github.com fills in what git cannot know (stars, watchers, issues, topics, license) on the About card, and serves as fallback when the clone cannot answer. The page itself cannot call the API, so the host proxies it: unauthenticated access works for public repos; set GITHUB_TOKEN in the harness environment to lift the 60-requests-per-hour ceiling.
  • API caching: About 5 minutes, commit lists 2 minutes, single commit diffs forever (a sha never changes). Local reads are uncached — git is fast and the data is live by definition.
  • Rate-limit exhaustion surfaces as a clear message in the tab instead of a broken pane.

How to install

Requires a DeepSeek Harness checkout and a profile, here web. Clone the dependencies and this plugin into a plugins folder:

mkdir -p ~/dsh-plugins && cd ~/dsh-plugins
git clone https://github.com/joao-paulo-santos/dsh-workspace-overview.git
git clone https://github.com/joao-paulo-santos/dsh-md-view.git
git clone https://github.com/joao-paulo-santos/dsh-diff-view.git
git clone https://github.com/joao-paulo-santos/dsh-wo-github.git

# from the harness checkout
pnpm dsh plugin --profile web add ~/dsh-plugins/dsh-workspace-overview
pnpm dsh plugin --profile web add ~/dsh-plugins/dsh-md-view
pnpm dsh plugin --profile web add ~/dsh-plugins/dsh-diff-view
pnpm dsh plugin --profile web add ~/dsh-plugins/dsh-wo-github

# verify the profile still composes
pnpm dsh --profile web --dump-config

Restart the harness; the GitHub tab appears in Workspace Overview.

Dependencies

  • dsh-workspace-overview hosts the subtab and resolves the workspace's GitHub slug (required; without it the client half stays inactive)
  • the git binary on PATH (local reads); api.github.com access is the fallback
  • dsh-md-view renders the README pane (optional; without it the raw markdown shows as text)
  • dsh-diff-view provides word highlights and the diff grid stylesheet (optional; patches still render without it)

Plugins dependent on this

(none)