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-unplug

v0.3.5

Published

Plug/unplug any DeepSeek Harness plugin cleanly: list every mounted layer, disable/enable without deleting, remove bundles + patch rows + dependencies in one pass, and audit for orphaned/dangling plugin state. Zero runtime dependencies; read-only by defau

Downloads

1,898

Readme

dsh-unplug

让 DeepSeek Harness(dsh)的插件装得容易、拔得干净

为什么需要它? 官方 dsh plugin remove 只处理 profile 里 dsh.profile.bundles 列表中的 bundle:

  • 不会清理 profile/home 的 cordis.patch.yml 里残留的插件行
  • 没有"禁用但保留配置"的能力(插拔自如)
  • 没有审计接口,拔完也不知道有没有残留

dsh-unplug 补上这三个缺口。

快速开始

dsh plugin add dsh-unplug

命令行

dsh-unplug list                         # 列出所有已挂载插件(bundles + 补丁行)
dsh-unplug remove <插件> --yes          # 完整卸载(bundle + 补丁行 + 依赖)
dsh-unplug disable <插件>               # 禁用但不删除(保留依赖,可随时启用)
dsh-unplug enable <插件>                # 重新启用
dsh-unplug audit                        # 检测孤立行 / 悬空 bundle
dsh-unplug reconcile --yes              # 一键自动修复悬空与孤立状态

选项:--profile <名>(默认 default)、--home <路径>--json--yes

Agent 可调用工具

安装后 agent 获得 unplug 工具:

  • list / audit — 只读,任何时候可用
  • remove / reconcile — 需要 force: true 显式确认
  • disable / enable — 可逆操作,无需确认

返回 dsh-unplug/v1 报告。

工作原理

  • bundle 列表(dsh.profile.bundles)— 移出列表 + pnpm remove
  • 禁用列表(dsh.profile.disabledBundles)— 在 bundles/disabled 之间移动
  • profile 的 cordis.patch.yml — 删除插件行或切换 disabled: true
  • home 的 cordis.patch.yml — 同上
  • 孤立/悬空状态 — audit 发现,reconcile 修复

安全

默认只读;remove / reconcile 需要显式 --yes(CLI)或 force: true(工具)。

License

MIT