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

@dmall-inc/skills-cli

v0.1.1

Published

Install Dmall platform skills from @owner/name URL

Readme

@dmall-inc/skills-cli

基于平台技能引用 URL 安装技能到本地。

安装

npm i -g @dmall-inc/skills-cli

或临时执行:

npx @dmall-inc/skills-cli add https://<host>/skills/@owner/<name> --token <wat_xxx>

说明:CLI 可以 npm i -g 全局安装;未显式指定目标时,技能默认落到 ~/.agents/skills,因此同一台机器上支持通用 skills 目录的多个 agent 都可复用。

用法

skills-cli add <url> [--token <wat_xxx>] [--target-dir <dir>] [--agents <ids>] [--yes] [--force] [--version <v>]
  • url 必须是:https://<host>/skills/@owner/<name>
  • token 优先级:--token > DMALL_SKILLS_TOKEN
  • 在终端交互模式下,默认会先让你多选安装目标并做最终确认
  • --yes:跳过最终确认;若同时传 --agents,则整次安装完全非交互
  • --agents:显式指定安装目标,支持逗号分隔的多选
    • universal~/.agents/skills/<name>
    • claude-code~/.claude/skills/<name>
    • codex~/.codex/skills/<name>
    • openclaw~/.openclaw/skills/<name>
    • qoder~/.qoder/skills/<name>
    • hermes-agent~/.hermes/skills/<name>
  • 未传 --target-dir 时,默认安装到:
    • ~/.agents/skills/<name>
  • 默认目录如果已存在同名技能,会先移动到同级 .backup/ 下再安装新版本
  • 若进入交互式多选,则会按你确认后的目标列表安装到多个目录

安装流程

  1. 解析 URL 得到 owner + name
  2. 调用 GET /api/open/skills/resolve
  3. 调用 GET /api/open/skills/{id}/download
  4. 若为交互终端,先选择安装目标并确认
  5. 解压并安装到本地目录(默认目录重名时自动备份旧目录)
  6. 校验目标目录内存在 SKILL.md

常见问题

  • 报错 Missing token
    • --token 或设置 DMALL_SKILLS_TOKEN
  • 报错 HTTP 401/403
    • token 无效、无权限,或技能对当前 workspace 不可见
  • 报错 Invalid install URL path
    • URL 不是 /skills/@owner/<name> 结构
  • 报错 ``unzip command not found
    • 先在本机安装 unzip