DeepSeek Harness plugin

dsh-discussions-radar

Official GitHub Discussions radar for DeepSeek Harness: list, filter and search the official boards (Ideas / Q&A / Show Your Plugins! / General / Announcements / Polls) — CLI plus an agent-callable discussions_radar tool, dsh-discussions-radar/v1 reports, zero runtime deps, read-only public API.

Jump to install

Source facts

Repository
zoahdev/dsh-discussions-radar
Latest update
Aug 21, 2026
Category
Development & Runtime
GitHub stars
0

Install

Start with a prompt that asks an agent to read the source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to read the page and repository first.

Do not install anything yet. Read this DeepSeek Harness plugin and explain what it does, which files, networks, or credentials it can access, and how to install and remove it.

Plugin page: https://deepseekplugins.org/plugins/zoahdev/dsh-discussions-radar
GitHub: https://github.com/zoahdev/dsh-discussions-radar
Plugin: dsh-discussions-radar
Author: zoahdev
Install command: dsh plugin --profile web add github:zoahdev/dsh-discussions-radar

Do not run the install command until I confirm.

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-discussions-radar

![npm](https://www.npmjs.com/package/dsh-discussions-radar)

![CI](https://github.com/zoahdev/dsh-discussions-radar/actions) ![License: MIT](LICENSE) ![dsh-plugin](https://github.com/topics/dsh-plugin)

Official GitHub Discussions radar for DeepSeek Harness (dsh): list, filter and search the official discussion boards — Ideas / Q&A / Show Your Plugins! / General / Announcements / Polls — from inside dsh or the terminal.

The companion to dsh-github-release-radar: that one watches releases, this one watches the community pulse. Zero runtime dependencies, read-only, public API only.

Install

dsh plugin add dsh-discussions-radar

Or run standalone:

npx dsh-discussions-radar --category "Show Your Plugins!" --limit 10

CLI

dsh-discussions-radar [options]

  --repo <owner/repo>   repository to scan (default deepseek-ai/deepseek-harness)
  --category <name>     filter by exact category (Ideas / Q&A / Show Your Plugins! / General / Announcements / Polls)
  --query <keyword>     case-insensitive keyword filter on title
  --limit <n>           max results (default 10)
  --since <ISO>         only discussions updated at/after this date
  --json                print the machine-readable dsh-discussions-radar/v1 report
  --help                show this help

Exit codes: 0 results, 1 no results / warnings, 2 usage/IO error.

npx dsh-discussions-radar
npx dsh-discussions-radar --category Ideas --limit 5
npx dsh-discussions-radar --query "plugin" --since 2026-08-01 --json

In-harness usage (agent-callable)

Ask your dsh agent:

> 官方社区最近有什么新讨论?discussions_radar,按更新时间排一下。 > What's new in the official community? Run discussions_radar sorted by activity.

The tool returns a dsh-discussions-radar/v1 report:

{
  "schema": "dsh-discussions-radar/v1",
  "repo": "deepseek-ai/deepseek-harness",
  "ok": true,
  "count": 10,
  "items": [
    {
      "number": 3123,
      "title": "Four new verified plugins: ...",
      "category": "Show Your Plugins!",
      "comments": 1,
      "createdAt": "2026-08-18T00:00:00Z",
      "updatedAt": "2026-08-18T12:00:00Z",
      "url": "https://github.com/deepseek-ai/deepseek-harness/discussions/3123"
    }
  ],
  "warnings": [],
  "fetchedAt": "2026-08-18T12:05:00Z"
}

Why it exists

  • The official repo is Discussions-only (no issues); the community pulse lives in these boards, but no dsh plugin surfaced them to the agent.
  • Staying on top of Ideas / Q&A / Show Your Plugins is how plugin authors find gaps and users find answers.
  • Zero runtime dependencies, read-only, works without any API key (public GitHub REST API).

Development

pnpm install
pnpm typecheck
pnpm build
pnpm test
pnpm test:integration

CI runs the dsh-plugin-doctor preflight, unit tests, a packed-artifact integration that calls the real public GitHub API, and a fresh-profile dsh web boot smoke on Windows.

License

MIT © 2026 zoahdev

---

dsh-discussions-radar(中文)

DeepSeek Harness(dsh)官方 GitHub Discussions 雷达:在 dsh 里或终端里列出、筛选、搜索官方讨论区——Ideas / Q&A / Show Your Plugins! / General / Announcements / Polls。

dsh-github-release-radar 互补:那个看版本发布,这个看社区脉搏。零运行时依赖、只读、只用公开 API。

安装

dsh plugin add dsh-discussions-radar

独立使用:

npx dsh-discussions-radar --category "Show Your Plugins!" --limit 10

CLI

dsh-discussions-radar [options]

  --repo <owner/repo>   要扫描的仓库(默认 deepseek-ai/deepseek-harness)
  --category <name>     按精确分类过滤(Ideas / Q&A / Show Your Plugins! / General / Announcements / Polls)
  --query <keyword>     标题关键词过滤(不区分大小写)
  --limit <n>           最大条数(默认 10)
  --since <ISO>         只显示该时间后更新过的讨论
  --json                输出机器可读 dsh-discussions-radar/v1 报告
  --help                帮助

退出码:0 有结果,1 无结果/有警告,2 用法/IO 错误。

npx dsh-discussions-radar
npx dsh-discussions-radar --category Ideas --limit 5
npx dsh-discussions-radar --query "plugin" --since 2026-08-01 --json

在 harness 内使用(agent 可调用)

对 agent 说:

> 官方社区最近有什么新讨论?discussions_radar,按更新时间排一下。

工具返回 dsh-discussions-radar/v1 报告(结构见英文版 JSON 示例)。

为什么需要它

  • 官方仓库只用 Discussions(没有 issues);社区脉搏就在这些板块里,但之前没有 dsh 插件把它暴露给 agent。
  • 跟踪 Ideas / Q&A / Show Your Plugins 是插件作者发现空位、用户找到答案的方式。
  • 零运行时依赖、只读、无需任何 API key(公开 GitHub REST API)。

开发

pnpm install
pnpm typecheck
pnpm build
pnpm test
pnpm test:integration

CI 跑 dsh-plugin-doctor 预检、单元测试、调用真实公开 GitHub API 的打包集成、以及 Windows 全新 profile 的 dsh web 启动冒烟。

许可证

MIT © 2026 zoahdev

Related ecosystem tools

FAQ

  • How do I install? dsh plugin add dsh-discussions-radar or run the CLI directly (see README).
  • Does it need an API key? No.
  • Is it read-only? Yes by default; any write/apply is an explicit flag.

Examples

See the README for full CLI usage. Quick start:

npx dsh-discussions-radar --help