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

ai-agent-loop

v1.0.1

Published

Long-Running Agent Loop Framework CLI - Based on Anthropic paper

Readme

agent-loop CLI

基于 Anthropic 官方论文 Effective Harnesses for Long-Running Agents 的 AI Agent 脚手架安装工具。

安装

npm install -g agent-loop

或直接使用(无需安装):

npx ai-agent-loop init

使用方法

交互式初始化

npx ai-agent-loop init

会提示选择语言和目标目录。

非交互式初始化

指定语言:

# 中文
npx ai-agent-loop init --lang zh

# 英文
npx ai-agent-loop init --lang en

指定目标目录:

npx ai-agent-loop init --lang zh --dir ./my-project

输出

安装后会在目标目录创建以下文件:

project/
├── CLAUDE.md                    # 主配置文件(Claude Code 自动读取)
└── agent-loop/
    ├── CLAUDE-INIT.md           # 初始化代理指南(首个会话)
    ├── CLAUDE-CODING.md         # 编码代理指南(后续会话)
    ├── feature_list.json        # 功能清单模板
    ├── claude-progress.txt     # 进度记录
    ├── init.sh                 # 开发服务器启动脚本
    └── run-agent-loop.ps1      # 循环执行脚本

下一步

  1. 进入项目目录: cd your-project
  2. 启动 Claude Code: claude
  3. 告诉 Claude: "请读取 CLAUDE.md 和 agent-loop/feature_list.json"
  4. 开始实现功能

命令行选项

| 选项 | 简写 | 描述 | 默认值 | |------|------|------|--------| | --lang | -l | 语言: zh / en | 交互式选择 | | --dir | -d | 目标目录 | 当前目录 | | --help | -h | 显示帮助 | - | | --version | -V | 显示版本 | - |

开发

# 安装依赖
npm install

# 链接本地包
npm link

# 测试
node bin/agent-loop.js init --lang zh --dir ../test-project

License

MIT