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

@intopost/lark-cli

v1.0.69-xybot.2

Published

带 iPass 代理扩展的 Lark CLI

Downloads

732

Readme

lark-cli

这是一个带 iPass 代理扩展的 lark-cli 分发仓库。

安装

推荐通过 npx 触发全局安装:

npx @intopost/lark-cli@latest install

也可以直接全局安装:

npm install -g @intopost/lark-cli

安装完成后可直接运行:

lark-cli --help

工作方式

  • npm 包本身只负责分发和安装
  • postinstall 会按当前平台下载预编译二进制
  • npx @intopost/lark-cli@latest install 会转成一次全局 npm install -g
  • 二进制从 GitHub Releases 下载,仓库地址固定为 https://github.com/intopost/lark-cli

发布

发布流程已经配置在 .github/workflows/release.yml

提交当前开发改动后,可一键发布当前版本:

npm run release

发布前预检(不创建 Tag、不推送):

npm run release -- --dry-run

该命令不会同步或修改 Skills。

  1. 更新 package.json 里的 xybotRevision;官方版本会从 go.mod 自动读取,然后运行 npm run version:sync
  2. 提交代码并按“官方版本 + xybot 迭代号”打 tag,例如官方版本为 1.0.55、迭代号为 1 时,tag 为 v1.0.55-xybot.1
  3. 推送 tag
  4. GitHub Actions 会自动:
    • 运行 go test ./...
    • 构建 darwin/linux/windows 的 amd64/arm64 二进制
    • 生成 GitHub Release 和 checksums.txt
    • 执行 npm publish --access public

需要的仓库 Secret

  • NPM_TOKEN: npm 发布令牌

本地调试

go test ./...
npm pack
node scripts/run.js --help

同步官方 Skills

go.mod 当前锁定的官方 Skills 同步到指定目录:

npm run skills:sync -- /path/to/.opencode/skills/lark

同步会删除目标目录中官方版本已不存在的文件。可先增加 --dry-run 预览变化。