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

claude-kanban

v0.6.11

Published

Visual Kanban board for AI-powered development with Claude

Readme

Claude Kanban

A visual Kanban board for AI-powered development with Claude. Run npx claude-kanban in any project directory to manage and execute AI coding tasks.

Features

  • Visual Kanban Board: Drag-and-drop tasks across columns (Draft, Ready, In Progress, Completed)
  • AI Task Execution: Click to run tasks with Claude Code CLI
  • Real-time Updates: WebSocket streaming of execution output
  • Parallel Execution: Run up to 3 tasks concurrently
  • AFK Mode: Automated loop execution for hands-off development
  • AI Task Generation: Describe what you want, get structured tasks
  • Task Templates: Pre-built templates for common patterns

Installation

# Run directly with npx (no installation needed)
npx claude-kanban

# Or install globally
npm install -g claude-kanban
claude-kanban

Requirements

  • Node.js 18+
  • Claude Code CLI (claude) installed and configured

Usage

Quick Start

cd your-project
npx claude-kanban

This will:

  1. Create .claude-kanban/ directory with config files
  2. Create scripts/ralph.sh and scripts/ralph-once.sh
  3. Start a local web server
  4. Open your browser to the Kanban board

CLI Options

Usage: claude-kanban [options]

Options:
  -V, --version        output the version number
  -p, --port <number>  Port to run server on (default: "4242")
  -n, --no-open        Do not auto-open browser
  --init               Re-initialize project files
  --reset              Reset all tasks (keeps config)
  -h, --help           display help for command

Creating Tasks

Manual: Click "+ New" to create a task with title, description, and verification steps.

AI-Assisted: Click "AI Create", describe what you want, and Claude generates structured task details.

Templates: Click "Templates" to use pre-built patterns for auth, CRUD, API endpoints, etc.

Running Tasks

  1. Move tasks from "Draft" to "Ready" when requirements are clear
  2. Click "Run" on a Ready task to execute with Claude
  3. Watch real-time output in the execution log
  4. Task automatically moves to "Completed" on success or shows "Failed" status

AFK Mode

Click "AFK" to run multiple iterations automatically:

  • Set maximum iterations
  • Set concurrent task limit (1-3)
  • Agent picks up tasks from "Ready" column
  • Continue until all tasks complete or max iterations reached

Shell Scripts

The tool generates shell scripts for CLI usage:

ralph.sh - Run multiple iterations:

./scripts/ralph.sh 10  # Run 10 iterations

ralph-once.sh - Run a single iteration:

./scripts/ralph-once.sh              # Pick highest priority task
./scripts/ralph-once.sh task_abc123  # Run specific task

Project Structure

your-project/
├── .claude-kanban/
│   ├── prd.json         # Task list (Product Requirements Document)
│   ├── progress.txt     # Agent memory/progress log
│   └── config.json      # Configuration
└── scripts/
    ├── ralph.sh         # AFK automation script
    └── ralph-once.sh    # Single-run script

Configuration

Edit .claude-kanban/config.json to customize:

{
  "agent": {
    "command": "claude",
    "permissionMode": "acceptedits",
    "model": null
  },
  "project": {
    "testCommand": "npm test",
    "typecheckCommand": "npm run typecheck",
    "buildCommand": "npm run build"
  },
  "execution": {
    "maxConcurrent": 3,
    "timeout": 30
  }
}

API Reference

The server exposes a REST API:

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/tasks | Get all tasks | | POST | /api/tasks | Create task | | POST | /api/tasks/generate | AI-generate task | | PUT | /api/tasks/:id | Update task | | DELETE | /api/tasks/:id | Delete task | | POST | /api/tasks/:id/run | Run task | | POST | /api/tasks/:id/cancel | Cancel task | | GET | /api/templates | Get templates | | POST | /api/afk/start | Start AFK mode | | POST | /api/afk/stop | Stop AFK mode |

WebSocket events stream execution output in real-time.

Methodology

This tool implements the "Ralph" methodology for AI coding agents:

  1. Small Tasks: Keep tasks focused and atomic
  2. Incremental Progress: One feature per iteration
  3. Progress Tracking: Maintain a log between sessions
  4. Git Commits: Checkpoint work after each task
  5. Feedback Loops: Use tests and type checking

Based on Anthropic's research on effective harnesses for long-running agents.

License

MIT