npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dsh-discussions-radar

v0.1.0

Published

Official GitHub Discussions radar for DeepSeek Harness (dsh): list, filter and search the deepseek-ai/deepseek-harness discussion boards (Ideas / Q&A / Show Your Plugins / General / Announcements) from inside dsh. CLI + agent-callable discussions_radar to

Readme

dsh-discussions-radar

CI License: MIT 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