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

@bolloon/bolloon-agent

v0.4.14

Published

P2P AI Document Agent - 全局安装后执行 `bolloon` 启动产品

Downloads

9,532

Readme

Bolloon — P2P AI 智能体平台

Bolloon 是一个本地优先、P2P 协作的 AI 智能体平台。它在你的设备上运行,通过 DHT 网络发现并连接其他节点。

中文 · English


快速安装

macOS / Linux

# 方式一:npm(需 Node.js ≥ 18)
npm install -g @bolloon/bolloon-agent

# 方式二:一键脚本
curl -fsSL https://raw.githubusercontent.com/logos-42/bolloon/master/scripts/install.sh | sh

Windows

# 方式一:npm(需 Node.js ≥ 18)
npm install -g @bolloon/bolloon-agent

# 方式二:一键脚本
# 以管理员身份运行 PowerShell:
iwr -useb https://raw.githubusercontent.com/logos-42/bolloon/master/scripts/install.ps1 | iex

Node.js 安装:如果尚未安装,访问 nodejs.org 下载 LTS 版本,或使用包管理器:

  • macOS: brew install node
  • Windows: winget install -e --id OpenJS.NodeJS.LTS
  • Linux: sudo apt install -y nodejs npm

快速启动

bolloon              # CLI 交互模式(默认)
bolloon --web        # Web UI 模式(浏览器)
bolloon --cli        # 强制 CLI 模式
bolloon --help       # 查看所有命令

首次启动会自动配置 LLM(需要 OPENAI_API_KEYDEEPSEEK_API_KEY 环境变量)。


功能概览

| 功能 | 描述 | |------|------| | 🤖 AI 对话 | 本地运行的智能体,支持多轮对话 | | 🌐 P2P 网络 | 自动发现并连接其他 Bolloon 节点 | | 📄 文档处理 | 接收和管理文档,支持 DID 签名验证 | | 🔧 工具调用 | shell 命令、文件操作、代码分析等 | | 🔄 自我改进 | 自动检查更新、质量门控 |


项目结构

bolloon/
├── src/
│   ├── agents/          # 智能体核心(pi-sdk、工具、session)
│   ├── cli/             # CLI 界面(Ink TUI 渲染引擎)
│   ├── network/         # P2P 网络(Hyperswarm / DIAP)
│   ├── security/        # 安全层(工具闸门、守卫)
│   ├── llm/             # LLM 接入层
│   └── web/             # Web UI
├── dist/                # 编译输出
├── docs/                # 文档
└── scripts/             # 构建和安装脚本

从源码构建

git clone https://github.com/logos-42/bolloon.git
cd bolloon
npm install
npm run build:all
npm start

环境变量

| 变量 | 说明 | |------|------| | OPENAI_API_KEY | OpenAI 提供商(可选) | | DEEPSEEK_API_KEY | DeepSeek 提供商(可选) | | ANTHROPIC_API_KEY | Anthropic 提供商(可选) | | BOLLOON_LLM_PROVIDER | 指定 LLM 提供商 |


开源协议

本项目基于 MIT 开源协议 发布。你可以自由使用、修改、分发本项目,但需保留版权声明和许可声明。详见 LICENSE 文件。


English

Bolloon — A local-first, P2P-collaborative AI agent platform that runs on your device and discovers other nodes through a DHT network.

Quick Install

macOS / Linux:

npm install -g @bolloon/bolloon-agent

Windows (PowerShell):

npm install -g @bolloon/bolloon-agent

Quick Start

bolloon            # CLI interactive mode
bolloon --web      # Web UI mode
bolloon --help     # All commands

Requires Node.js ≥ 18 and an LLM API key (OPENAI_API_KEY or DEEPSEEK_API_KEY).

License

This project is released under the MIT License. You are free to use, modify, and distribute this project, provided that you retain the copyright and permission notices. See the LICENSE file for details.