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

@windaka-erp/erp-cli

v0.3.2

Published

ERP CLI - command-line tool for Windaka ERP system

Readme

@windaka-erp/erp-cli

物达通(WindaKa)物业管理 ERP 系统命令行工具,为人类和 AI Agent 设计。

安装

以下两种方式任选其一

方式一 — 从 npm 安装(推荐):

# 安装 CLI
npm install -g @windaka-erp/erp-cli

# 安装 Skills(必需,让 AI Agent 知道如何使用 CLI)
npx skills add windaka-erp/erp-cli -y -g

方式二 — 从源码安装:

git clone https://github.com/windaka-erp/erp-cli.git
cd erp-cli
go build -o erp-cli .

# 安装 Skills(必需)
npx skills add windaka-erp/erp-cli -y -g

快速开始

人类用户

# 1. 初始化配置
erp-cli --as me config init

# 2. 登录
erp-cli --as me auth login

# 3. 开始使用
erp-cli --as me workorder +list

AI Agent

以下步骤面向 AI Agent。详细步骤见 INSTALL.md

# 安装 CLI
npm install -g @windaka-erp/erp-cli

# 安装 Skills(必需)
npx skills add windaka-erp/erp-cli -y -g

# 验证
erp-cli --help

安装完成即可使用。知识库检索无需登录;需要登录的操作(如工单查询)会在调用时自动引导。

命令

erp-cli --as <id> config init/show/set/remove      # 配置管理
erp-cli --as <id> auth login/login-start/login-wait # 登录
erp-cli --as <id> auth status/logout/list           # 认证状态
erp-cli --as <id> api GET/POST <path>               # 原始 API 调用
erp-cli --as <id> knowledge +search/+list-datasets  # 知识库检索
erp-cli --as <id> workorder +list/+create           # 工单操作

参数

  • --as <id> — 用户标识(必填),企业微信用 Sender ID,本地用任意稳定标识(如 me
  • --dry-run — 预览请求内容,不实际执行

Agent Skills

| Skill | 说明 | |-------|------| | erp-cli | ERP 系统总入口:知识库检索、工单管理、认证配置、意图路由 |

安装 Skills 后,AI Agent 会自动读取 skills/SKILL.md 获取完整的使用指南。

要求

  • Node.js >= 14.0.0
  • 支持 Windows (x64/arm64)、macOS (x64/arm64)、Linux (x64/arm64)

License

MIT