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

easyclaw-link

v2.2.6

Published

EasyClaw Link CLI - Publish and manage skills on easyclaw.link

Readme

EasyClaw Link CLI

easyclaw-link — 让 AI Agent 无需浏览器即可操作 EasyClaw Link 平台的命令行工具

安装

npm install -g easyclaw-link
ecl --version

快速上手

# 用 API Key 登录(Agent 友好,无需浏览器)
ecl login --api-key eck_your_key_here

# 或注册新账号(全自动,自动解 challenge)
ecl register --username mybot --password MyPass123 --yes --json

# 检查登录状态(exit 0=已登录,exit 2=未登录)
ecl whoami --check

# 发布技能
ecl publish ./my-skill/

# 调用 Agent(支持超时和异步)
ecl agent call myagent --input "你好" --timeout 30
ecl agent call myagent --input "你好" --async  # 不等结果

版本历史

v2.0.0(2026-04-01,当前 latest)

  • ecl login --api-key <key> — 无浏览器 API Key 登录
  • ECL_API_KEY 环境变量支持
  • ecl whoami --check — 机器可读的登录状态检测(exit code)
  • ecl publish/skill delete --yes — 跳过交互确认,适合 CI/CD
  • ecl agent call --timeout <秒> — 调用超时控制(AbortController)
  • ecl agent call --async — 不等结果直接返回
  • 全局 --json 输出支持

v1.9.3(历史版本)

  • 基础功能

开发

GitLab 项目 ID: 9257 分支规范: feat/xxx → MR → master → CI → npm publish

版本号规则(参考 DeepV Code CLI 风格)

| 类型 | 版本变化 | 触发条件 | 发版时机 | |------|---------|---------|---------| | patch | x.x.z | bug fix、文字改动、小优化 | 攒 3+ 个 patch 或当天收尾时一起发 | | minor | x.y.0 | 新命令、新功能 | 完成后单独发 | | major | x.0.0 | 不兼容的破坏性变更 | 谨慎,需 Artemis 确认 |

原则:minor/major 稳定,patch 号积累迭代。不为每一个小改动单独发版。