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

@suqingsq/dsh-agent-plugins

v0.2.0

Published

Agent Plugins 1.0.0 adapter for DeepSeek Harness: discovers skills/ and mcp.json from agent-plugin stores, registers skills and MCP servers, and manages them through a CLI and the settings panel.

Readme

dsh-agent-plugins

English | 中文

DeepSeek Harness (DSH)Agent Plugins 1.0.0 适配插件。一个包覆盖 host bundle、Web 侧栏面板和 agent-plugins CLI。

已按 @deepseek-ai/[email protected] 验证。

做什么

让 DSH 直接消费标准 Agent Plugin 包(plugin.json + skills/ + mcp.json):

  • skills/<name>/SKILL.md 注册进 DSH 的 Skill registry(provider 名为 agent-plugins)。
  • mcp.json 里的 server 映射进托管的 home patch,由 DSH 按 MCP 行拉起。
  • CLI 负责在机器级 store 里安装、更新、启停和卸载。
  • Web 侧栏的「插件」按钮打开覆盖会话列的面板:插件卡片、Skill/MCP 开关、筛选,以及 CLI 速查。

Agent Plugins 面板

Store

包放在 $DSH_HOME/agent-plugins/。台账是 installed.json,包含插件级 enabled 以及组件级 skills.*.enabled / mcp.*.enabled(两级默认都是 true)。CLI、host 适配和面板共用同一套库函数。

关掉整个插件后,它的 Skill 和 MCP 都不再出现。只关某一个 Skill 或某一个 MCP server 时,包里其余组件继续可用。

CLI

agent-plugins install <dir|zip|git-url>
agent-plugins uninstall <name>
agent-plugins update [name...|--all]
agent-plugins enable|disable <name>
agent-plugins enable|disable <name> --skill <n>
agent-plugins enable|disable <name> --mcp <server>
agent-plugins list [--json]
agent-plugins doctor

install 校验通过才写入 store。同 name 再次安装会替换文件并保留 PLUGIN_DATAuninstall 删除文件和台账,同样保留 PLUGIN_DATA--mcp 使用 list 里看到的限定名 <plugin>__<server>

doctor 检查 store、台账和托管 patch 段。

面板

侧栏脚按钮打开覆盖会话列的 shell.overlay。面板列出机器级 store 和项目级(.agent-plugins)store,可按名称或来源(dir / zip / git)筛选,并能开关整个插件或单个 Skill / MCP server。展开卡片可看到来源、作者、安装时间、checksum、数据目录和组件开关。

项目 Skill 会从 cwd/.agent-plugins 以及项目根目录的 .agent-plugins 发现。

验证

兼容边界与验证证据记录在设计文档中。当前兼容基线为 @deepseek-ai/[email protected]

License

MIT。