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

@wanghailong0419/dsh-skill-manager

v0.1.4

Published

DSH bundle: manage user-level skills from Settings — list all skills with enable/disable switches (disabled skills are excluded from model catalogs)

Readme

dsh-skill-manager

DeepSeek Harness (DSH) 的 Skill 管理插件——在 Web 设置里管理所有用户级 Skill:查看、启用/停用、编辑、新增、删除、改名。停用的 Skill 会从模型目录中排除(不再加载)。

npm License: MIT

preview

功能

  • Skill 列表:进入设置 → "Skill管理",列出 $DSH_HOME/skills 下全部 Skill(名称 + 描述)
  • 点击展开 / 收起:点击行任意位置展开详情(Skill 名称 + SKILL.md 内容),再点收起(输入框与按钮除外)
  • 启用 / 停用:每个 Skill 一个开关,切换即生效,本地更新不闪烁
  • 编辑 / 改名:内联编辑名称与 SKILL.md 内容,改名会同步重命名目录
  • 新增 / 删除:内联表单创建新 Skill,删除有二次确认
  • 关闭即不加载:停用时修改 SKILL.md frontmatter 加 disable-model-invocation: true,DSH 的 skill-filesystem watcher 检测到后立即从模型目录排除该 Skill,无需重启

架构

单包双半的 DSH bundle:

| 半 | 入口 | 角色 | |---|---|---| | Host | lib/index.js | skillManager Remote 服务:skillList / skillSet / skillGet / skillCreate / skillUpdate / skillDelete / skillRename,编辑 SKILL.md frontmatter | | Client | lib/client.js | 设置面板 "Skill管理" 分区(dsh.client bundle) |

安装

dsh plugin --profile web add @wanghailong0419/dsh-skill-manager
dsh web   # 重启生效

本地开发 / 未发布时

dsh plugin --profile web add file:/path/to/dsh-skill-manager
dsh web

升级 / 移除

dsh plugin --profile web update @wanghailong0419/dsh-skill-manager
dsh plugin --profile web remove @wanghailong0419/dsh-skill-manager

使用

  1. 启动 dsh web,打开设置 → Skill管理
  2. 列表显示每个 Skill:状态点(绿=启用 / 灰=停用)、名称、描述
  3. 点右侧开关切换启用/停用
  4. 点击行展开详情:查看 Skill 名称与 SKILL.md 内容,可编辑删除
  5. 新增:点"新增 Skill",内联填写名称与内容

停用效果:修改 SKILL.md frontmatter 加 disable-model-invocation: true。DSH 的 skill-filesystem 提供方会将该 Skill 从模型目录和 loader 中排除(watcher 自动刷新,无需重启)。

工作原理

  • skillList:扫描 $DSH_HOME/skills/<name>/SKILL.md,解析 frontmatter 的 descriptiondisable-model-invocation
  • skillGet:读取单个 Skill 的完整 SKILL.md 内容
  • skillSet:文本级编辑 frontmatter(保留 name/description/origin 等原有字段和格式),加/删 disable-model-invocation: true
  • skillCreate / skillUpdate:新建或整体替换 SKILL.md 内容
  • skillRename:重命名 Skill 目录,并同步 frontmatter 的 name 字段
  • skillDelete:删除整个 Skill 目录
  • 幂等:重复切换不会重复修改

License

MIT