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

@tyanxie/paimon

v1.1.0

Published

Remote observation and control panel for pi coding agent

Downloads

920

Readme

Paimon,让你能在浏览器里跟所有 Pi 实例对话。

📸 截图

主界面

✨ 特性

  • 💬 实时对话流 — 流式输出、思考过程、工具调用全展示
  • 🖼️ 图片支持 — 粘贴或上传图片发送给 LLM,历史消息中可查看大图
  • 🔄 多实例切换 — 一个页面管理所有 pi 会话
  • 🌐 多机支持 — 中心化 Hub + 分布式 Edge,管理多台服务器上的 pi 实例
  • 页面创建实例 — 选择 Edge 节点 + 路径选择器
  • 📋 Session 管理 — 浏览历史 session,一键新建或切换
  • 🔒 访问认证 — Access Token 保护所有 API 和 WebSocket 连接
  • 🎨 毛玻璃风格界面 — 清爽的 macOS 风格设计
  • 🌐 多语言支持 — 中文/英文界面,设置页一键切换
  • 📱 响应式设计 — 桌面/移动端自适应,iOS Safe Area 适配

📋 前置要求

  • Pi >= 0.78.1
  • Node.js >= 18(npm 安装方式)或 Bun(从源码安装)

🚀 快速开始

Paimon 采用三层架构:

  • Hub — 中心服务,服务 Web UI,接收 Edge 上报
  • Edge — 每台机器上的代理,管理本机 pi 实例
  • Extension — pi 插件,自动连接本机 Edge

安装

npm 安装(推荐)

npm install -g @tyanxie/paimon    # 安装 paimon CLI
pi install npm:@tyanxie/paimon   # 安装 pi 插件

从源码安装

git clone https://github.com/tyanxie/paimon.git && cd paimon
bun install       # 安装依赖
bun run build     # 构建前端
bun link          # 安装 paimon CLI
pi install .      # 安装 pi 插件

使用

# 启动 Hub
paimon hub start

# 启动 Edge
paimon edge start

# 启动 pi(任意目录)
pi

# 打开浏览器(首次需输入启动时输出的 Access Token)
open http://localhost:8080

多机部署

# 机器 A(Hub 所在机器)
paimon hub start --host 0.0.0.0
paimon edge start --hub ws://localhost:8080

# 机器 B(远程服务器,需指定 Hub 的 token)
paimon edge start --hub ws://<hub-ip>:8080 --token <access-token>

🔒 --host 0.0.0.0 会暴露服务到公网。当前不支持 TLS,token 明文传输可被网络嗅探,建议仅在可信网络使用或通过反向代理(nginx/caddy)提供 TLS。

📄 License

MIT