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

maimai-qskills

v1.0.12

Published

OpenClaw skills installer

Readme

maimai-qskills

OpenClaw skills 交互式安装器。包含以下 skills:

  • chrome-cdp — Chrome DevTools Protocol CLI
  • file-explorer — 文件内容搜索(支持 PDF/DOCX/Excel)
  • mac-contacts — macOS 通讯录查询
  • maimai-batch-message — 脉脉批量沟通
  • maimai-phone-exchange — 脉脉电话交换记录

用户:安装 / 更新

npx maimai-qskills@latest

交互提示选择安装路径(默认 ~/.openclaw/workspace/skills/)和要安装的 skills。每次运行自动拉取最新版本覆盖更新。

file-explorer 需要额外安装 Python 依赖:pip install pdfplumber python-docx openpyxl


维护者:发布流程

前置条件

  • 已登录 npm:npm login
  • Node.js >= 16.7.0

一键发布

cd /path/to/maimai-qskills
node publish.mjs

脚本会依次执行:

  1. 同步 — 从 ~/.openclaw/workspace/skills/ rsync 到本仓库 skills/
  2. 升级版本 — 提示选择 patch / minor / major,自动 npm version
  3. 发布 — 执行 npm publish

分步操作

如果需要手动控制某一步:

# 仅同步源文件
node sync.mjs

# 仅升级版本
npm version patch   # 或 minor / major

# 仅发布
npm publish

项目结构

maimai-qskills/
├── install.mjs      # 安装脚本(npx 入口)
├── sync.mjs         # 同步源文件
├── publish.mjs      # 一键发布
├── package.json
└── skills/          # skill 文件(由 sync.mjs 从源目录同步)

数据流

日常编辑                         发布
~/.openclaw/workspace/skills/  →  maimai-qskills/skills/  →  npm registry
              (sync.mjs)               (npm publish)