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

task-pool-mcp

v0.1.0

Published

基于 GitHub Issues 的 AI 开发团队任务池。Leader 发布任务,Worker(人或 AI Agent)认领并执行,支持任务依赖关系,AI 完成后由人 Review。通过 MCP 协议接入任意 vibe coding 工具(Claude Code、Cursor、Windsurf 等)。

Downloads

19

Readme

task-pool-mcp

基于 GitHub Issues 的 AI 开发团队任务池。Leader 发布任务,Worker(人或 AI Agent)认领并执行,支持任务依赖关系,AI 完成后由人 Review。通过 MCP 协议接入任意 vibe coding 工具(Claude Code、Cursor、Windsurf 等)。

快速开始

1. 安装

npx task-pool-mcp

或直接克隆后运行:

git clone <repo>
cd task-pool-mcp
npm install

2. 配置环境变量

复制 .env.example.env 并填写:

GITHUB_TOKEN=ghp_xxxx        # GitHub Personal Access Token
GITHUB_REPO=owner/repo-name  # 目标仓库

Token 需要 repo 权限以读写 Issues。

3. 接入 MCP

在 Claude Code / Cursor / Windsurf 的 MCP 配置中添加:

{
  "mcpServers": {
    "task-pool": {
      "command": "npx",
      "args": ["task-pool-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_xxxx",
        "GITHUB_REPO": "owner/repo-name"
      }
    }
  }
}

任务状态机

pending → available → assigned → in-progress → in-review → done
                ↑                                    |
             blocked ←──────────────────────────────┘(Review 不通过回退)
                |
         (前置任务 done 后自动解锁 → available)

| 状态 | label | |-------------|------------------| | pending | tp:pending | | blocked | tp:blocked | | available | tp:available | | assigned | tp:assigned | | in-progress | tp:in-progress | | in-review | tp:in-review | | done | tp:done |

MCP Tools

| Tool | 调用者 | 说明 | |-----------------|---------------|---------------------------------| | create_task | Leader | 创建任务,支持依赖和优先级 | | list_tasks | 任何人 | 按状态/指派者过滤任务列表 | | claim_task | Worker/AI | 认领可用任务 | | update_progress | Worker/AI | 更新进度并追加评论 | | complete_task | Leader | Review 通过后完成并解锁下游任务 | | get_board | Leader | 按维度分组查看任务看板 |

角色指南

  • Leader: 参考 skills/leader.md
  • Worker / AI Agent: 参考 skills/worker.md

技术栈

  • TypeScript (Node.js 18+)
  • @modelcontextprotocol/sdk
  • @octokit/rest
  • tsx 直接运行,无需编译