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

@llodev/pm-tasks-trello

v1.5.0

Published

Trello adapter for the @llodev/pm-tasks-* family. Use when the user mentions Trello (create card, publish to Trello, post to Trello, --publish, check checklist item, close card, comment on card) or wants to publish a plan as Trello cards. Modes: paste-rea

Readme

@llodev/pm-tasks-trello

Trello adapter for the @llodev/pm-tasks-* family — turn implementation plans into Trello cards and operate them via paste, MCP publish, or autonomous write-through.

npm License: MIT Node.js >= 20 Agent Skills spec

What you get:

  • Paste-ready output — agent renders a generic card; you paste into Trello manually.
  • MCP publish via atlassian-trello-mcp. Card + named checklists + labels + member assignment in one batch.
  • CRUD operations on existing cards: checklist.check, task.close, task.comment.add, task.due-date.set, task.assignee.add.
  • Autonomous mode[autonomous] / --auto sentinel for write-through under allowlist + scope + rate limits. Multi-task loops mirror state to Trello in real time.

Install

# npm (with skillpm or Claude Code marketplace)
npm i @llodev/pm-tasks-core @llodev/pm-tasks-trello

# Vercel CLI (install core manually too)
npx skills add llodev/skills/pm-tasks/pm-tasks-core
npx skills add llodev/skills/pm-tasks/pm-tasks-trello

Setup the MCP

Claude Code:

claude mcp add trello -s project -- npx -y atlassian-trello-mcp

Approve via /mcp in chat. Export env vars in your shell:

export TRELLO_API_KEY=...
export TRELLO_TOKEN=...

Cursor / Windsurf / Codex / other agents: see references/mcp-config.md.

Setup the config

npx @llodev/pm-tasks-trello init

Walk through the prompts. Pick where the config should live:

  • local./.trello.json (recommended for project-scoped configs, can be committed).
  • global → a platform default, customizable. Defaults:
    • macOS / Linux (XDG): $XDG_CONFIG_HOME/llodev/pm-tasks/trello.json, falling back to ~/.config/llodev/pm-tasks/trello.json.
    • Windows: %APPDATA%\llodev\pm-tasks\trello.json.
    • Override on any OS with LLODEV_PM_TASKS_CONFIG_HOME=/your/path — the file lands at $LLODEV_PM_TASKS_CONFIG_HOME/trello.json.

The init prompt prints the absolute path it will write to, so you always see exactly where the file goes.

[!IMPORTANT] Secrets belong in env vars or OS keychain — never in this JSON. The init script reads TRELLO_API_KEY + TRELLO_TOKEN from your shell, not from the config file.

Use

| Prompt example | What the agent does | | ----------------------------------------------------------------- | ---------------------------------------------------------------------- | | "publish this plan as Trello cards" | Phase 5 publish — card + checklists + labels + member in one batch | | "check item 3 on task X in Trello" | Phase 6 CRUD — checklist.check on the checklist item | | "close card Y" | Phase 6 CRUD — task.close (dueComplete: true + move to close list) | | "comment on card X: shipped" | Phase 6 CRUD — task.comment.add | | "[autonomous] create task in trello from plan @docs/plans/X.md" | Phase 5b autonomous (requires autonomous.enabled: true) |

Trello-specific notes

[!NOTE] task.close MUST set dueComplete: true in addition to moving the card to the close list — the Trello UI shows the due-date strikethrough only when dueComplete is set.

[!WARNING] create_card ignores idMembers silently — always follow up with trello_add_member_to_card per member ID. The adapter does this for you.

  • add_member_to_card sometimes reports a false error even on success — the adapter re-fetches the card and checks members[] to confirm.
  • Trello descriptions don't render tables — the adapter flattens them to bullets automatically (see references/format.md).

Documentation

License

MIT — see LICENSE.