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

axis-agent

v0.1.6

Published

Axis delivery CLI for status, UI, Claude plugin install, and Codex launch.

Readme

axis-agent

Axis 的统一命令行入口。负责安装、启动编排和宿主接入,不承担后端服务的业务实现。

安装

npm install -g axis-agent
axis --help

快速开始

axis doctor   # 检查环境是否就绪(可选但推荐)
axis start    # 启动所有服务
axis ui       # 打开页面

首次启动会构建 Docker 镜像(约 3-8 分钟)。embeddingmemory_llm 可在页面设置面板中后续配置,不影响启动和对话。

平台支持

| 平台 | 支持程度 | |---|---| | Windows | 完整支持,winget 自动安装 Docker + 全自动启动 | | macOS | 支持,需自行安装 Docker Desktop,axis start 自动检测并启动 | | Linux | 部分支持,需自行安装 Docker Engine 并手动配置 |

命令参考

| 命令 | 说明 | |---|---| | axis start | 启动完整托管栈:Docker 容器(PostgreSQL + storage + retrieval-runtime + visualization)+ MNA | | axis stop | 停止并清理所有服务 | | axis status | 查看服务健康状态 | | axis restart <runtime\|storage> | 重启容器内指定服务 | | axis doctor | 无副作用环境诊断(Node / Docker / 端口 / API Key) | | axis ui | 打开或启动可视化页面 | | axis uninstall | 清理 ~/.axis/、Docker 镜像及所有数据 |

宿主接入

| 命令 | 说明 | |---|---| | axis claude | 安装插件并启动 Claude Code(自动检测 ~/.axis/claude-plugin) | | axis claude install | 仅安装插件,不启动 | | axis codex | 启动 Codex(平台强制注入模式,无需 MCP 工具调用) | | axis mna | 单独管理 MNA:install / start / stop / logs / token |

常用参数

# 首次启动同时配置主模型
axis start \
  --provider-kind openai-compatible \
  --provider-model gpt-4.1-mini \
  --provider-base-url https://api.openai.com/v1 \
  --provider-api-key-env OPENAI_API_KEY

# 局域网访问
axis start --bind-host 0.0.0.0

# 启动后自动打开页面
axis start --open

# 后台运行
axis start --daemon

目录结构

~/.axis/
  state.json              # 托管状态(端口、容器名)
  logs/                   # 运行日志
  managed/
    config.json           # 统一配置(provider / embedding / memory_llm / governance)
    secrets.json          # 密钥
    mna/                  # MNA 运行数据
  claude-plugin/          # Claude Code 插件