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

wink-pings

v1.1.6

Published

CLI:从 Wink Pings 免费获取最新新闻

Readme

wink-pings

面向 终端使用者(命令行 / npx)与 Agent(需理解本仓库如何拉取 Wink Pings 新闻)。英文见 README.en.md


使用者:CLI

Wink Pings 免费获取最新新闻。

无需安装:

npx wink-pings --help
npx wink-pings
npx wink-pings --email [email protected] --freshness 4 --lang zh
npx wink-pings --lang en --json

全局安装(可选): npm install -g wink-pings,之后直接运行 wink-pings

常用参数: --email / -e--langzh|en),--freshness(小时,1~48,默认 12),--limit(默认 10,非会员勿超过 10),--json 输出原始 JSON。


邮箱从哪读

在未传 --email 时,按顺序尝试:

  1. 环境变量 WINK_PINGS_EMAIL
  2. 当前目录下 skills/pings/pings-user-email(单行邮箱)
  3. 用户目录 ~/.wink-pings-email

可将注册邮箱写入 skills/pings/pings-user-email 供本仓库与 CLI 复用(该文件已在 .gitignore 中,勿提交)。


Agent:技能与文档

本仓库 Skill 目录遵循常见约定:SKILL.md + reference.md + examples.md(见 skills/pings/README.md)。

| 资源 | 路径 | 说明 | |------|------|------| | Skill 正文 | skills/pings/SKILL.md | 触发词、请求参数、展示格式、底部文案等;以该文件为准 | | 接口契约 | skills/pings/reference.md | HTTP Query、响应字段、错误与业务行为 | | 调用示例 | skills/pings/examples.md | curl / CLI 示例 |

编辑器 / 工具发现(均指向同一套正文 skills/pings/,符号链接便于各工具扫描):

| 工具 | 路径 | |------|------| | Cursor | .cursor/skills/pings | | Claude Code | .claude/skills/pings(项目级 skills) | | OpenClaw | 仓库根目录 skills/(工作区 skills);另提供 .openclaw/skills/pings 与上表一致 |

若符号链接在你的系统上不可用,请直接以 skills/pings/ 为准,或把该目录复制到各工具文档要求的全局 skills 目录。

Agent 执行「拉 Pings 新闻」时:先读 SKILL.md,按需读 reference.md / examples.md;邮箱逻辑见上节。


仓库布局(概览)

pings-skills/
├── skills/
│   ├── README.md
│   └── pings/                    # 标准 Skill 目录
│       ├── README.md
│       ├── SKILL.md
│       ├── reference.md
│       ├── examples.md
│       └── scripts/             # 可选,辅助脚本
├── .cursor/skills/pings     # → ../../skills/pings
├── .claude/skills/pings     # → ../../skills/pings(Claude Code)
├── .openclaw/skills/pings   # → ../../skills/pings(OpenClaw)
├── bin/cli.js
├── package.json
├── README.md
└── README.en.md