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

@yxiaoer/soaring-cli

v1.2.1

Published

凌空任务管理命令行工具

Readme

@yxiaoer/soaring-cli

Soaring 任务管理命令行工具

安装完成后,可在任意终端 / Agent 中直接执行 soaring 查看与管理任务。

推荐:让 Agent 安装(网页生成提示词)

  1. 打开 Soaring 网页 → 设置 → CLI 工具
  2. 生成新 Key
  3. 复制弹窗中的 「给 Agent 的安装提示词」(已含密钥、安装步骤、Skill)
  4. 粘贴到 Codex / Cursor / Claude Code,让 Agent 执行

装好后可直接说:

  • 「我有哪些待处理任务」
  • 「看下蚁小二延期的迭代」

Skill 源文件:cli-package/skill/soaring-cli/SKILL.md.agents/skills/soaring-cli/SKILL.md

手动安装

npm install -g @yxiaoer/soaring-cli@latest
soaring install --token=soar_cli_xxx
soaring auth whoami

已全局安装时

soaring install
# 或
soaring install --token=soar_cli_xxx

仅更新命令

npm install -g @yxiaoer/soaring-cli@latest

本机调试

soaring install --token=soar_cli_xxx --api-url=http://localhost:3001

本地后端默认端口 3001

配置说明

  • 网页 设置 → CLI 工具 生成密钥(soar_cli_...
  • 配置文件:~/.config/soaring/config.json
  • 优先级:--token / --api-url > 环境变量 > 配置文件 > 默认正式环境

常用命令

soaring products list
soaring products list --keyword=蚁小二
soaring users search 张三
soaring tasks list --assignee=me --status=待处理
soaring tasks list --product-id=1 --assignee=me
soaring iterations list --product-id=1

# 评论 CRUD
soaring comments list --module=work_item --target-id=1
soaring comments task-list 1
soaring comments create --module=work_item --target-id=1 --content="进度如何?"
soaring comments task-create 1 --content="进度如何?"
soaring comments update 12 --content="已跟进"
soaring comments delete 12

soaring --help

输出

{ "success": true, "data": {} }
{ "success": false, "error": "..." }

开发

cd cli-package
pnpm install
pnpm run build
npm link
soaring --help