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

cursor-trello-agent

v1.1.0

Published

Bridge Trello webhooks to Cursor AI agent — auto-triggers development workflows when cards are labeled

Readme

cursor-trello-agent

Bridge Trello webhooks to Cursor AI agent. When a card receives a specific label in Trello, this tool writes a structured task to your project and triggers Cursor to start an autonomous development workflow.

How it works

Trello (label added to card)
  → Webhook POST → cursor-trello-agent (local server + ngrok tunnel)
  → Writes task to TRELLO_TASKS.md
  → Focuses Cursor window, opens Agent chat, sends "process trello tasks"
  → Cursor rule reads the task → Trello MCP fetches card details → Agent develops

Install

# Global
npm install -g cursor-trello-agent

# Or per-project
npm install -D cursor-trello-agent

# Or run directly
npx cursor-trello-agent

Setup

1. Initialize in your project

cursor-trello-agent init

This creates:

  • .cursor/rules/trello-tasks.mdc — Cursor rule that auto-processes pending tasks
  • .env.cursor-trello-agent — Example environment config
  • TRELLO_TASKS.md — Task queue file

2. Configure environment

Set these in .env.local, .env, or your shell:

| Variable | Required | Default | Description | |---|---|---|---| | NGROK_AUTHTOKEN | Yes | — | Free token from ngrok.com | | TRELLO_PORT | No | 3080 | Local server port | | TARGET_LABEL | No | critical | Trello label name that triggers the agent |

3. Register a Trello webhook

Start the server to get your public URL:

cursor-trello-agent start

Then register a webhook pointing to the displayed tunnel URL. You can do this via the Trello UI, Trello API or a Trello MCP tool.

4. Trigger

Add the configured label (default: critical) to any card in Trello. The agent handles the rest.

Commands

| Command | Description | |---|---| | cursor-trello-agent init | Scaffold config files into the current project | | cursor-trello-agent start | Start the webhook server with ngrok tunnel | | cursor-trello-agent help | Show usage |

Platform support

The Cursor trigger works on:

  • Windows — PowerShell + SendKeys
  • macOS — AppleScript + System Events
  • Linux — xdotool / wmctrl

If the trigger can't find the Cursor window, the task is still written to TRELLO_TASKS.md. You can manually tell Cursor to "process trello tasks".

Requirements

  • Node.js >= 18
  • Cursor IDE with Trello MCP configured
  • A Trello board with webhook access
  • ngrok account (free tier works)

How the Cursor rule works

The trello-tasks.mdc rule is set to alwaysApply: true. Whenever you interact with Cursor, it checks TRELLO_TASKS.md for ## PENDING blocks and immediately starts the development workflow:

  1. Fetches full card details via Trello MCP
  2. Assesses requirements from card description/checklists
  3. Plans and implements changes
  4. Validates (lint, type-check, build, tests)
  5. Commits, pushes, and moves the card to "Ready"

License

MIT