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

kanbaii

v0.5.2

Published

Visual cockpit for Claude Code. Plan visually, track progress, let AI execute. Same engine, better cockpit.

Readme


Why KANBAII

Claude Code is the engine. KANBAII is the cockpit.

You can manage a project from the terminal. But when your project has 15 features, 8 bugs, and 3 refactors — opening a browser and seeing everything as a kanban board, dragging priorities, reading plans, and launching agents that work your backlog — that's a different experience.

KANBAII is a visual kanban board that sits on top of Claude Code. Organize your work visually, plan with AI, and when you're ready — hit play and watch your agents execute.

Same engine. Better cockpit.


30-Second Start

Prerequisites: Claude Code installed and authenticated.

# Install
npm install -g kanbaii

# Verify everything works
kanbaii doctor

# Launch — opens in your browser
kanbaii start

That's it. Your board is at localhost:5555. Data stays on your machine as clean JSON files.


How It Works

1. Organize in two levels

Project (your big goal)
  └── Work Items (Feature / Bug / Refactor)
        ├── Plan (context, strategy, notes)
        └── Tasks (5-column kanban board)

Work Items are the meaningful chunks. Each one gets its own kanban board with Backlog → Todo → In Progress → Review → Done.

2. Plan with AI (or manually)

Open the Planner — describe what you want in plain language:

"I need user auth with login, signup, password reset, and OAuth for Google & GitHub"

AI generates structured work items with plans and tasks. Review, edit, approve. Or skip the AI and create everything manually — your call.

3. Execute

Three modes, pick what fits:

| Mode | What it does | When to use | |------|-------------|-------------| | Manual | You drag tasks across columns | When you're doing the work yourself | | Ralph | AI executes one work item end-to-end | Focused, sequential work | | Teams | AI coordinator runs multiple work items in parallel | Sprint-style, multiple fronts at once |

Ralph reads the plan, resolves dependencies, executes tasks in order, and moves them to Review. Teams does the same — but with multiple workers, simultaneously.


When To Use What

This is the key question. Here's the honest answer:

                         ┌─────────────────────────────┐
  "Fix this one bug"     │                             │
  "Refactor this func"   │     Claude Code directly     │
  "Explain this code"    │     (terminal, one task)     │
  "Write tests for X"    │                             │
                         └─────────────────────────────┘

                         ┌─────────────────────────────┐
  "Build auth system"    │                             │
  "8 bugs to triage"     │         KANBAII              │
  "MVP with 15 features" │   (board + AI execution)    │
  "Track sprint progress" │                             │
                         └─────────────────────────────┘

The rule: if you can describe it in one sentence → Claude Code. If you need a list → KANBAII.

They're not competing tools. KANBAII calls Claude Code under the hood. It's the project layer that makes Claude Code work across many tasks instead of one at a time.


Features

Visual Kanban Board

Two-level board with drag & drop. Work items flow through Planning → Active → Review → Done. Tasks inside each work item flow through 5 columns. Real-time updates via Socket.IO.

AI Planner

Describe what you need in natural language. AI generates work items with full plans and decomposed tasks. Review and approve before anything hits your board.

Ralph — Focused Executor

One work item, full attention. Reads the plan, picks up tasks from Todo, executes them sequentially (parallel where safe), moves completed work to Review. Pauses and asks you when it needs input.

Teams — Parallel Execution

Select multiple work items. A coordinator assigns each to a worker. Workers execute simultaneously — one work item per worker. Watch progress from the Teams dashboard.

Local-First, Zero Config

No accounts. No subscriptions. No cloud. Your data is JSON files on disk. Fully git-friendly. Stop the server and your data is still there, readable, portable.

Developer Experience

  • Command Palette (Ctrl+K) for fast navigation
  • Keyboard-first — everything accessible without a mouse
  • Dark & Light themes — Obsidian dark mode, Porcelain light mode
  • Doctor command — validates Claude CLI, auth, Node.js, everything

Data Structure

No database. Clean JSON files you can read, edit, and version control:

data/projects/my-app/
  project.json                    # Project metadata
  work-items/
    feat-auth-system.json         # Feature with plan + tasks
    bug-login-crash.json          # Bug with plan + tasks

CLI Reference

kanbaii start              # Start server, open browser
kanbaii start -p 8080      # Custom port
kanbaii start --no-open    # Don't open browser
kanbaii start --data-dir ~/my-data  # Custom data directory
kanbaii doctor             # Diagnose: Claude CLI, Node, auth
kanbaii status             # Is the server running?
kanbaii init               # Initialize data directory
kanbaii shortcut           # Create a desktop shortcut
kanbaii shortcut --remove  # Remove the desktop shortcut

Architecture

For contributors:

Express + Socket.IO ──── Single port (default: 5555)
       │
       ├── /api/*          REST endpoints
       ├── /socket.io      Real-time events
       └── /*               Static frontend (Next.js export)

| Layer | Stack | |-------|-------| | Backend | Express, Socket.IO, Zod | | Frontend | Next.js 14, Zustand, Framer Motion | | AI | Claude Code CLI | | Testing | Vitest |

git clone https://github.com/martinmsaavedra/kanbaii.git
cd kanbaii && npm install
cd frontend && npm install && cd ..

npm run dev:server    # Express on :5555
npm run dev:frontend  # Next.js on :3000
npm test

Philosophy

Structure without ceremony. AI without lock-in. Your data, your machine.

  • Your board is a JSON folder, not a vendor database
  • Claude Code does the real work — KANBAII just gives it structure
  • No accounts, no cloud, no tracking — install and go
  • Organization is the multiplier — not more AI, but better-directed AI

Support

If you find KANBAII useful, consider giving it a star on GitHub — it helps others discover the project.

Star on GitHub