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

atomix-cli

v0.1.0

Published

Working-directory-bound agent CLI built on atomix-core, sharing the semaclaw ecosystem

Readme

atomix

绑定当前工作目录的终端 AI 编码助手。在项目目录里启动,它就以这个项目为上下文:读写代码、执行命令、编排子代理,会话历史与配置按项目天然隔离。

  • 终端 TUI:Markdown 流式渲染、工具执行与权限确认卡片、todos 与上下文用量状态栏
  • 多模型服务商:Anthropic / OpenAI / DeepSeek / Kimi / GLM / Qwen / MiniMax / OpenRouter 及自定义接口,首次运行向导配置
  • 可扩展:skills、子代理、MCP 服务器、hooks、自定义斜杠命令,支持用户级与项目级两层配置
  • 并行子代理:AgentTeam 以任务 DAG 一次编排多个子代理,无依赖任务并行执行

安装

需要 Node.js ≥ 20。

npm install -g atomix-cli

从源码构建见开发文档

快速开始

atomix                      # 在当前目录启动交互会话(TTY 下为 TUI,否则回退基础 REPL)
atomix -C /path/to/project  # 指定工作目录
atomix -p "prompt"          # 一次性执行,stdout 只输出最终回复(适合脚本/管道)
atomix -r                   # 恢复历史会话(列表选择,或 -r <sessionId>)
atomix model                # 模型配置管理:list | add | use <名称> | quick <名称> | del <名称>

首次运行会进入模型配置向导,配置保存在 ~/.atomix/model.conf

会话内使用

输入 /help 查看全部命令。常用交互:

| 输入 | 作用 | |---|---| | @文件路径 | 引用文件(自动路径补全;图片扩展名自动作为多模态发送) | | !命令 | 直接执行 shell 命令(输出仅本地显示,不进模型上下文) | | /resume /clear /compact | 切换会话 / 清空上下文 / 压缩上下文 | | /skills /agents /mcp /marketplace | 组件启停、列表与插件市场 | | /theme /glyphs /thinking | 主题 / 字形风格 / 思考开关 | | Ctrl+V | 粘贴剪贴板图片或文本 | | Esc / ↑↓ | 中断当前轮 / 输入历史 |

自定义命令放在 ~/.atomix/commands/(用户级)或 <项目>/.atomix/commands/(项目级),支持 $ARGUMENTS 替换。

数据与配置

~/.atomix/                # 用户级(环境变量 ATOMIX_ROOT 可覆盖)
├── model.conf            # 模型配置
├── history/<项目>/       # 会话历史,按项目隔离
├── skills/ agents/ commands/ mcp.json hooks.json
└── AGENT.md              # 全局规则

<项目目录>/
├── AGENT.md | CLAUDE.md  # 项目规则(即本项目的"人设")
└── .atomix/              # 项目级 skills / agents / commands / mcp.json / hooks.json

文档

License

MIT