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

crewdeck

v0.1.1

Published

Visual dashboard to manage your Claude Code agents — local-first with secure tunnel access

Readme

CrewDeck

Visual dashboard to manage your Claude Code agents — local-first with secure tunnel access.

CrewDeck gives you a web-based command center for all your Claude Code agents. Launch agents, assign tasks, chat in real-time, and capture ideas — all from a clean dashboard accessible locally or remotely via your phone.

Features

  • Project Dashboard — Scan your git repos, see all projects at a glance with agent status
  • Agent Management — Spawn, monitor, and stop Claude Code agents per project
  • Live Streaming — Real-time SSE output from agents with color-coded events
  • Task Board — Create tasks, assign them to agents, track progress (pending → in progress → done)
  • Ideas Inbox — Capture ideas via the UI (Ctrl+I) or terminal (crewdeck idea "..."), convert to tasks
  • Secure Tunnel — Access your dashboard from your phone via Cloudflare Tunnel with token auth + QR code
  • CLI Toolscrewdeck status, crewdeck tasks, crewdeck idea for quick terminal access
  • Local-first — Everything runs on your machine. SQLite database, no cloud dependency

Requirements

  • Node.js 22+
  • An active Claude Code subscription (Pro or Max)

Quick Start

npx crewdeck

This will:

  1. Start the dashboard server on http://localhost:4200
  2. Open your browser automatically
  3. Scan for git projects in the current directory

Installation

npm install -g crewdeck

Usage

Launch the dashboard

crewdeck                    # Start on port 4200
crewdeck -p 3000            # Custom port
crewdeck --tunnel           # Enable remote access with QR code
crewdeck --no-open          # Don't open browser

CLI commands

crewdeck idea "Fix the auth bug"    # Capture an idea
crewdeck status                      # Show projects/agents summary
crewdeck tasks                       # List tasks by project
crewdeck --help                      # Full help

Remote access

crewdeck --tunnel

This creates a secure Cloudflare Tunnel with a one-time access token. A QR code is displayed in the terminal — scan it with your phone to access the dashboard remotely.

Tech Stack

| Layer | Technology | |-------|-----------| | Runtime | Node.js 22+ | | Backend | Hono (lightweight HTTP server) | | Frontend | Next.js (static export) + React 19 + Tailwind CSS 4 | | Database | SQLite (better-sqlite3 + drizzle-orm) | | Agents | @anthropic-ai/claude-agent-sdk | | Tunnel | cloudflared | | Animations | Framer Motion |

Development

git clone https://github.com/ThomasMeb/crewdeck
cd crewdeck
npm install
npm run build       # Build backend + frontend
npm run dev         # Dev mode with watch
npm run lint        # TypeScript check

License

MIT