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-plugin-list-plus

v0.1.0

Published

An elevated Plugin list for DeepSeek Harness Web Settings — trust tiers, collapsible groups, and complete per-plugin detail

Readme

dsh-plugin-list-plus

DeepSeek Harness Web 设置的插件列表升级——信任分级、可折叠分组,插件细节一览无余。它在官方插件列表标签页旁新增一个 插件列表 Plus 标签页,提供:

  • 信任分级 —— 插件按 官方 / 组织 / 个人 分组:@deepseek-ai 作用域与 cordis: 内置指令为官方,其他任意 npm 作用域为组织,无作用域或本地文件为个人。
  • 可折叠分组 —— 数量多的组可从组头折叠,无需滚动即可看到其他组。
  • 完整详情 —— 每个插件一张卡片:显示名、版本号、git 提交、开发者、描述、许可证、主页、仓库、Bundle 补丁、配置状态与 Cordis 挂载状态。
  • 搜索与排序 —— 按名称、描述、开发者等字段过滤,每个信任组内按名称稳定排序。

安装

# 从构建产物安装
dsh plugin --profile web add ./dsh-plugin-list-plus-0.1.0.tgz
# 发布到 npm 后
dsh plugin --profile web add dsh-plugin-list-plus

重启 dsh web,打开 设置 → 插件 → 插件列表 Plus(官方插件列表旁的新标签页)。

工作原理

一个包、两个部分、一条由本插件注册的数据路由:

  • Node 部分src/index.ts,包的 main):读取 Loader 树与已安装的 package.json,计算信任分级快照,并在 GET /plugins/dsh-plugin-list-plus/list 提供——以 exact 路由注册,因此绝不会遮蔽本插件自己的浏览器 bundle(/plugins/<name>/client.js)。
  • 浏览器部分src/client/,包的 ./client):注册独立的插件列表标签页(settings.plugins.tab id plus,order 20),与官方标签并列,渲染增强列表。

由于 DeepSeek Harness 存在标签栏投影 bug(ui-settings-plugins 读的是 entries() 而非 entriesOfSlot(),影子覆盖官方标签会产生重复标签)且不接受外部改动修复,本插件以独立标签页的方式交付增强。

开发

pnpm install
pnpm run build     # tsc(d.ts)+ tsdown(lib/index.mjs 与 lib/client.js)
pnpm test          # vitest(node 部分 + 浏览器部分 + 组件)
pnpm run typecheck # src 与 tests 的严格类型检查

浏览器部分打包为 harness 客户端 bundle 约定(window.__ModuleLoader__.load),reactreact/jsx-runtime@deepseek-ai/dsh-client-ui-primitives 从运行时模块表解析。

License

MIT