DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Github Sidebar — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
G

dsh-github-sidebar

Github Sidebar

一个 DSH(DeepSeek Harness)客户端插件,可在聊天窗口右侧的详细信息栏中添加 GitHub 信息侧边栏:顶部窗格按星标数排序列出 GitHub 主题(例如 dsh-plugin)下的仓库,底部窗格列出某个仓库的讨论,并支持按时间、评论数和置顶状态排序。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:Olympianz/dsh-github-sidebar#1edd39343d8ed07dcd24afb8bb2fa32aadd232cd
README兼容性版本

兼容性与来源证明

Github Sidebar 以 dsh-github-sidebar 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/26

版本

0.1.0stable
2026/8/26

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/26
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 integrations-communication 分类下经过校验的插件。

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rIm@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。

README

dsh-github-sidebar

A DeepSeek Harness (DSH) client plugin that adds a GitHub info sidebar to the chat window's right details column, with two stacked panes:

  • Top pane — topic repos by stars: lists repositories under a GitHub topic (default dsh-plugin), sorted by stars descending, 10 per page with pagination. Uses the public GitHub REST Search API (no token needed).
  • Bottom pane — discussions: lists a repository's discussions (default deepseek-ai/deepseek-harness), sortable by newest (server-side, near → far), most comments, and pinned first (client-side, fetches the full list then sorts), 10 per page with pagination. Uses the GitHub GraphQL API (a token is required).

Features

  • ✨ Right-side GitHub sidebar inside the DSH chat window (auto-opens the details column).
  • ⭐ Topic repos sorted by stars, pageable.
  • 💬 Discussions with 3 sort dimensions + pagination.
  • 🔑 Token entered in the panel itself (stored in localStorage, sent only to api.github.com).

Installation

Install into your DSH profile (installs the host bundle and registers the client plugin):

dsh plugin --profile web add dsh-github-sidebar
# or, when running dsh from a source checkout:
pnpm dsh plugin --profile web add dsh-github-sidebar

Or install directly from this repository:

dsh plugin --profile web add https://github.com/Olympianz/dsh-github-sidebar

Then restart dsh (dsh web) and refresh the page — the client plugin set is scanned at startup.

Usage

  1. Open a session.
  2. The right details column auto-opens showing GitHub Sidebar.
  3. Top pane: browse topic repositories sorted by stars; use pagination buttons to flip pages.
  4. Bottom pane:
    • Switch sort with Newest / Most comments / Pinned first.
    • Paste a GitHub token (GraphQL requires one) and press Save.

Configuration

All defaults are hardcoded in the panel for now; the host half exposes a Config schema (topic, owner, repo, pageSize) that can be overridden in cordis.yml, but the browser half does not read it yet. The token is entered in the panel (per-user, persisted in localStorage).

Development

pnpm install
pnpm run bundle     # build lib/client.js (tsdown)
pnpm run watch      # rebuild on change
pnpm run typecheck  # tsc --noEmit (best-effort)

lib/client.js is committed so that installing from GitHub works without a build step. Regenerate it after changing src/client.

Publishing

See CONTRIBUTING.md for the full guide. Short version:

  1. Create a GitHub repository (e.g. dsh-github-sidebar), push this directory, and add the topics dsh-plugin, deepseek-harness, dsh on the repo's Topics page.
  2. Publish to npm so users can dsh plugin add dsh-github-sidebar:
    npm login
    npm publish
    

Known limitations

  • The details column is a single-occupant slot: the GitHub panel replaces the default call/trajectory details in the right column. A true "coexist toggle" would require modifying DSH's ui-conversation DetailsPanel (a DSH source change).
  • Sorting discussions by comments/pinned fetches the full discussion list first (more GraphQL requests; watch rate limits on large repos).
  • The token lives in localStorage (exposed in the browser). A server-side host proxy would keep it out of the browser; not implemented yet.
  • Details-column visibility is maintained by auto-opening it; some layout transitions (session switches) may briefly close it before the plugin re-opens it.

License

MIT