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

crowdlisten-agent

v0.1.1

Published

Connect your local coding agent (Claude Code, Codex) to CrowdListen Kanban

Readme

CrowdListen Agent CLI

Connect your local coding agent (Claude Code, Codex, OpenCode) to CrowdListen's Kanban board. Tasks assigned in the web UI get picked up by your local machine and results stream back in real-time.

Prerequisites

  • Node.js ≥ 18
  • A coding agent installed locally:
  • A CrowdListen account

Quick Start

cd agent-bridge
npm install

# Connect (opens browser to sign in)
node cli.js connect

That's it. Your browser opens, you sign in to CrowdListen (or it auto-detects if you're already signed in), and the CLI starts listening for tasks.

What Happens

  1. Browser opens → CrowdListen sign-in page (Google or email/password)
  2. You sign in → browser shows "Connected!" and you can close the tab
  3. CLI registers → your machine appears as an available agent in CrowdListen
  4. Tasks arrive → when you assign a task on the Kanban board, the CLI picks it up automatically
  5. Agent executes → Claude Code / Codex runs the task locally
  6. Results stream → output appears in real-time in the web UI

Subsequent runs skip the browser — your session is cached in ~/.crowdlisten-agent.json.

Commands

node cli.js connect                  # Connect and wait for tasks
node cli.js connect --executor codex # Use Codex instead of Claude
node cli.js connect --name "my-pc"   # Custom agent name
node cli.js connect --project /path  # Set working directory for agent
node cli.js status                   # Check if you're connected
node cli.js disconnect               # Go offline

Options

| Flag | Description | Default | |------|-------------|---------| | --executor <name> | Coding agent: claude, codex, opencode | claude | | --name <name> | Display name for this agent | Machine hostname | | --project <path> | Working directory for the coding agent | Current directory |

Architecture

Web UI (Kanban) ──→ Supabase (agent_tasks) ──→ CLI (Realtime subscription)
                                                    │
                                                    ├─→ Spawns coding agent
                                                    │
                                                    └─→ Streams logs back ──→ Web UI
  • No server needed — CLI connects directly to Supabase
  • Secure — authenticated with your account, RLS ensures you only see your tasks
  • Real-time — Supabase Realtime for instant task delivery and live log streaming

Troubleshooting

Browser didn't open — The CLI prints the URL. Copy-paste it into your browser manually.

"Session expired" — Just run connect again, it'll re-open the browser.

"claude: command not found" — Install it: npm install -g @anthropic-ai/claude-code

Agent not showing online — Run node cli.js status to check. Re-run connect if needed.