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

auto-code-mcp

v0.3.0

Published

MCP server for auto-code-bot

Readme

auto-code-mcp

MCP (Model Context Protocol) 服务器,用于将 auto-code-bot 集成到支持 MCP 的 IDE 中,如 Claude Desktop、Cursor 等。

核心特性

支持工程类型

  • 单包工程:直接处理,简单高效
  • 多包工程 (Monorepo):自动检测 pnpm-workspace.yaml,根据 task.json 中的 workspace 字段智能切换目录,跨多个包协作开发

⚠️ 多包工程支持目前处于早期验证阶段,欢迎反馈问题与改进建议

测试进度

  • 已完成 7 个任务的验证测试
  • 测试耗时:约 40 分钟
  • 后续将进行大型工程的验证

MCP 协议支持

  • 完全兼容 Model Context Protocol
  • 可与 Claude Desktop、Cursor 等 IDE 无缝集成

项目文件支持

  • app_spec.md:位于 docs/app_spec.md
  • task.json:位于项目根目录
  • task.json 优先:当存在 task.json 时,即使没有 app_spec.md 也可直接执行任务
  • Phase 检测:自动检测项目阶段(need-spec / need-tasks / execute)

安装

# 克隆仓库
git clone https://github.com/varlinor/code-bot.git
cd code-bot

# 安装依赖
pnpm install

# 构建
pnpm build:mcp

配置

Claude Desktop

claude_desktop_config.json 中添加:

{
  "mcpServers": {
    "auto-code-bot": {
      "command": "node",
      "args": ["packages/mcp/dist/index.js"]
    }
  }
}

Cursor

在 Cursor 设置中找到 MCP 配置,添加同样的配置。


工作流

MCP 服务是 auto-code-bot 工作流的一部分。详细工作流说明见 docs/workflow.md

推荐的阶段性工作流:

  1. 使用 app-spec-generator skill 生成 app_spec.md
  2. 使用 auto-code-bot --init-only 生成 task.json
  3. 使用 task-auditor skill 审核 task.json
  4. 使用 auto-code-bot --ulw 执行任务

开发

# 开发模式(热重载)
pnpm dev

# 构建
pnpm build

灵感来源