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

helix-service-cli

v0.5.7

Published

Helixlife 网站后台命令行工具

Readme

Helixlife 网站后台 CLI

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

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

安装

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

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

环境地址(单一来源)

后台环境地址 只由编译期 config.ts 决定(构建时选择 开发/测试/生产)。

  • helix login -s <url>-s 已废弃并被忽略,避免历史地址长期劫持环境切换。
  • 切换环境:修改 cli/src/core/types/config.ts 后重新 npm run build 并全局安装。
  • helix config 查看当前 baseUrl

配置路径

# 已移除 --config / HELIX_CONFIG_FILE / configstore:CLI 不再读取本地配置文件

本地仅保存 token 文件:~/.config/helix/token-key.txt

本地开发

npm install
npm run build
npm link
helix --version

发布

在仓库根目录执行:

npm publish

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

Skill(独立仓库)

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

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

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

目录结构(CLI 仓库)

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

命令命名空间

| 模块 | 命令示例 | 状态 | | --------- | ---------------------- | ------ | | 综述 | helix workbench jova | 已实现 | | SCI 论著 | helix workbench sci | 占位 | | AI 应用 | helix application | 已实现 |