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

quantex

v0.0.1-beta.2

Published

统一的 AI Agent CLI 管理工具,支持安装、更新、卸载、查询、快捷启动主流 AI 编程助手

Readme

Quantex CLI

npm version npm downloads bundle License

统一的 AI Agent CLI 管理工具,支持安装、更新、卸载、查询、快捷启动主流 AI 编程助手。

支持的 Agent

| Agent | 命令 | 别名 | 描述 | |-------|------|------|------| | Claude Code | quantex claude / qtx claude | - | Anthropic 官方 AI 编程助手 CLI | | Codex | quantex codex / qtx codex | - | OpenAI 官方 AI 编程助手 CLI | | Copilot | quantex copilot / qtx copilot | - | GitHub Copilot 命令行工具 | | Cursor | quantex cursor / qtx cursor | agent | Cursor AI 编程助手命令行工具 | | Droid | quantex droid / qtx droid | - | Factory AI 软件工程 Agent CLI | | Gemini | quantex gemini / qtx gemini | - | Google 开源 AI 编程助手 CLI | | OpenCode | quantex opencode / qtx opencode | - | 开源 AI 编程 CLI | | Pi | quantex pi / qtx pi | - | 极简可扩展的终端编程 Agent |

安装

# 使用 Bun
bun add -g quantex

# 使用 npm
npm i -g quantex

安装后可使用 quantex 或短别名 qtx 命令。

使用

安装 Agent

quantex install claude
# 或使用短别名
qtx i claude

更新 Agent

quantex update claude
quantex u claude

# 更新所有已安装的 agent
quantex update --all

卸载 Agent

quantex uninstall claude
quantex rm claude

列出所有 Agent

quantex list
quantex ls

查看 Agent 详情

quantex info claude

快捷启动 Agent

# 直接启动 agent(参数透传)
quantex claude --dangerously-skip-permissions

# 使用短别名启动
qtx claude --dangerously-skip-permissions

# 使用 agent 别名启动
quantex agent --help

配置管理

# 查看配置
quantex config

# 获取配置项
quantex config get defaultPackageManager

# 设置配置项
quantex config set defaultPackageManager npm

# 重置为默认配置
quantex config reset

环境检查

quantex doctor

配置

配置文件位于 ~/.quantex/config.json,支持以下配置项:

{
  "defaultPackageManager": "bun"
}

开发

bun install              # 安装依赖
bun run dev              # 开发运行
bun run test             # 运行测试
bun run test:watch       # 监听模式运行测试
bun run lint             # 代码检查
bun run typecheck        # 类型检查
bun run build            # 构建

License

MIT License © Drswith