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

alou-cli

v0.1.10

Published

Alou AI Agent CLI - 终端命令行工具,支持工具调用、群聊协作、智能体管理

Readme

Alou CLI

Alou AI Agent 终端命令行工具 - 通过 npm 全局安装使用。

功能特性

  • 🤖 智能体管理 - 创建、列出、删除 AI 智能体
  • 🔄 自主循环 - 自动化任务执行(持续循环)
  • 📋 任务队列 - 任务添加、列表管理
  • ⚙️ 配置管理 - API 密钥、模型配置

安装

# 全局安装
npm install -g alou-cli

# 或本地安装后运行 postinstall
npm install
npm run postinstall

使用方法

# 查看帮助
alou help

# 工具系统
alou tool list                     # 列出所有工具
alou tool exec bash '{"command":"ls -la"}'  # 执行工具
alou tool help <工具ID>             # 工具帮助

# 智能体管理
alou agent create <名称> [描述] [人设]  # 创建智能体
alou agent list                     # 列出智能体

# 群聊协作
alou chat create <名称> [创建者]     # 创建群聊
alou chat list                      # 列出群聊

# 自主循环
alou start                          # 启动(设置状态)
alou loop                           # 开始循环执行任务
alou stop                           # 停止
alou pause                          # 暂停
alou resume                         # 恢复
alou status                         # 状态
alou run                            # 执行单次任务

# 任务管理
alou task add <标题> [描述] [优先级]  # 添加任务
alou task list                      # 任务列表

可用工具

| 工具ID | 功能 | |--------|------| | filesystem | 文件系统操作 (读/写/复制/删除) | | search | 代码和文件搜索 | | bash | 终端命令执行 | | network | 网络操作 (ping/curl/wget) | | system | 系统信息和管理 | | agent_collaboration | 智能体协作 | | agent_creator | 智能体创建 |

开发

# 本地开发
npm install
npm run postinstall  # 编译 Rust

# 手动编译
npm run build

# 测试
./bin/alou help

要求

  • Node.js >= 16.0.0
  • Rust (安装 CLI 时自动检测)

License

MIT