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

helixlife-service-cli

v0.1.9

Published

helixlife 网站后台命令行工具

Readme

helixlife 网站后台 CLI

单一 npm 包 helixlife-service-cli,源码在 cli/ 目录。

Skill 与 CLI 已分离cli/skills/(含 SKILL.mdreferences/)不随本 npm 包发布,后续将迁至独立 skill 仓库。Agent 自然语言交互请安装 Skill。

安装

npm install -g helixlife-service-cli
helixlife auth login          # 获取授权链接 + 打开浏览器完成授权
helixlife auth status         # 确认授权是否成功

Token 写入本地文件 ~/.config/helixlife/user-access-token.txt(由 helixlife auth login / helixlife login 浏览器授权流程获取)。

环境地址

默认使用生产基址(config.ts)。可通过本地配置覆盖 api / agent_api(完整 URL,原样使用):

helixlife config                              # 查看当前生效地址
helixlife config set api https://api.example.com
helixlife config set agent_api https://agent.example.com

本地配置文件:~/.config/helixlife/config.jsonnewidea 基址固定,不可覆盖。

配置路径

本地保存:

  • 配置:~/.config/helixlife/config.json
  • Token:~/.config/helixlife/user-access-token.txt

本地开发

npm install
npm run build
npm link
helixlife --version

发布

在仓库根目录执行:

npm publish

prepublishOnly 会自动执行 npm run build。发布内容仅含 cli/bincli/dist,不含 cli/skills/

Skill(独立仓库)

Agent 侧使用需安装 Skill 包(SKILL.md + references/),与 CLI 分开维护:

helixlife-service-cli/          # skill 仓库(规划中,当前暂存于本仓库 cli/skills/)
├── SKILL.md                     # 唯一 Skill 入口
└── references/                  # 各业务模块命令参考
    ├── workbench/
    │   ├── jova.md
    │   ├── sci.md
    │   └── nsfc.md
    └── application.md

安装到 Agent 后,references 位于 <Skill 安装目录>/references/,例如 Cursor:~/.cursor/skills/helixlife-service-cli/references/

目录结构(CLI 仓库)

helixlife-service-cli/
├── package.json          # npm 包定义(仅 CLI)
└── cli/
    ├── bin/helixlife.js
    ├── dist/             # 编译产物(随 npm 发布)
    ├── src/
    └── skills/           # 本地开发用,不随 npm 发布
        ├── SKILL.md
        └── references/

命令命名空间

| 模块 | 命令示例 | 状态 | | -------- | -------------------------- | ------ | | 综述 | helixlife workbench jova | 已实现 | | SCI 论著 | helixlife workbench sci | 已实现 | | 基金 | helixlife workbench nsfc | Step1 | | AI 应用 | helixlife application | 已实现 |