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

@yunkeai/omni-cli

v1.3.4

Published

AI-native pluggable CLI framework

Readme

omni-cli

AI-native 可插拔 CLI 框架。所有命令输出均为 JSON,便于 AI agent 消费。

安装

npm install -g @yunkeai/omni-cli

快速开始

# 查看所有可用命令
omni-cli schema

# 查看某个命令的详细参数和返回值 schema
omni-cli schema.detail --command <command-name>

# 查看帮助
omni-cli help

命令输出格式

所有命令统一返回 JSON 信封:

{
  "success": true,
  "data": {},
  "error": null,
  "metadata": {
    "command": "schema",
    "duration_ms": 2,
    "timestamp": "2026-04-10T00:00:00.000Z",
    "plugin": "builtin:schema"
  }
}

内置命令

| 命令 | 说明 | |------|------| | schema | 列出所有可用命令 | | schema.detail --command <name> | 查看指定命令的完整 schema | | help | 显示帮助信息 | | plugin.list | 列出已安装插件 | | plugin.install --path <path> | 安装插件 | | plugin.remove --name <name> | 移除插件 | | feature.list | 列出所有 feature flag | | feature.enable --name <name> | 启用 feature | | self.check | 检查是否有新版本 | | self.update | 更新到最新版本 |

插件

yunke-crm

云客 CRM 集成插件,提供认证、组织架构查询和报表功能。

# 登录(三步)
omni-cli yunke-crm.auth.send-code --phone 13800138000
omni-cli yunke-crm.auth.verify --phone 13800138000 --sms_code 123456
omni-cli yunke-crm.auth.login --phone 13800138000 --sms_code 123456 --corp_id <corp_id>

# 查询部门树
omni-cli yunke-crm.org.department-tree

# 员工报表(部门维度)
omni-cli yunke-crm.report.employee-statistics --option department --start_time 2026-04-01 --end_time 2026-04-08

# 员工报表(员工维度)
omni-cli yunke-crm.report.employee-statistics --option employee --start_time 2026-04-01 --end_time 2026-04-08

skillshub

技能市场插件,管理本地安装的 skills。

omni-cli skillshub.search --keyword <keyword>
omni-cli skillshub.install --slug <slug>
omni-cli skillshub.list
omni-cli skillshub.upgrade

License

MIT