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

pi-fizzy

v0.3.0

Published

Pi extension for fetching Fizzy.do cards and turning them into build or plan prompts.

Readme

pi-fizzy

A pi extension for loading a Fizzy card into the session, turning it into an immediate build prompt, or starting with a plan-first prompt.

Please note: This is fully vibe coded by pi itself.

Install

From npm

pi install npm:pi-fizzy

From git

pi install git:github.com/denniseijpe/pi-fizzy

Commands

  • /fizzy https://app.fizzy.do/projectid/cards/cardid
    • Fetches the card, steps, and recent comments.
    • Stores it as the active Fizzy card on the session.
    • Injects the card details into the conversation context without starting work automatically.
    • Prompts the user with: Fizzy card loaded. What do you want to do?
    • Supports autocomplete: type /fizzy <query> and press Tab to search recent assigned cards.
  • /fizzydo https://app.fizzy.do/projectid/cards/cardid
    • Fetches the card, steps, and recent comments.
    • Moves the card into Doing before immediate implementation starts, creating the column if needed.
    • Immediately sends a build prompt to pi.
    • Supports autocomplete: type /fizzydo <query> and press Tab to search recent assigned cards.
  • /fizzyplan https://app.fizzy.do/projectid/cards/cardid
    • Fetches the same data.
    • Moves the card into Doing before planning starts, creating the column if needed.
    • Starts with planning instructions and explicitly tells pi not to edit files yet.
    • Supports autocomplete: type /fizzyplan <query> and press Tab to search recent assigned cards.
  • /fizzycurrent
    • Shows the current active Fizzy card stored on the session.
  • /fizzylist
    • Shows a centered modal with the latest 20 Fizzy tasks assigned to the account.
    • Select an entry with ↑/↓ and press Enter to load it, equivalent to /fizzy <url>.
    • The modal scrolls within the available terminal height instead of overflowing.

Extra tools

  • fizzy_get_card

    • Available to the agent during normal work.
    • Lets pi refresh the live card context later if needed.
    • If the session already has a current Fizzy card, the URL can be omitted.
  • fizzy_add_comment

    • Posts a comment back to Fizzy.
    • Uses the current session's active Fizzy card when no URL is provided.
  • fizzy_move_to_column

    • Moves a card to a named column such as Doing, Review, or QA.
    • Creates the target column if it does not exist yet.
    • Special case: Maybe / Maybe? uses Fizzy's built-in Maybe? stream instead of creating a normal column.
    • Uses the current session's active Fizzy card when no URL is provided.
  • fizzy_mark_done

    • Marks a card done in Fizzy.
    • Uses the current session's active Fizzy card when no URL is provided.
  • fizzy_assign

    • Assigns the current user (pi) to a Fizzy card.
    • Uses the current session's active Fizzy card when no URL is provided.
    • Toggles assignment: calling it again on an already-assigned card will unassign.

Session behavior

When you run /fizzy, /fizzydo, or /fizzyplan, the extension stores the current Fizzy card on the pi session.

If pi is running with a TUI, the extension also shows a small non-blocking overlay in the top-right corner with the current card number and a truncated title.

/fizzydo and /fizzyplan move the card into a Doing column up front. /fizzy only loads the card into the session.

If you want pi to move a card into Doing later, ask pi explicitly or use fizzy_move_to_column.

That means later prompts like:

  • write a small comment with a summary and then mark the issue as done

can resolve the issue against the active Fizzy card for the current session.

Auth setup

This extension reads credentials from ~/.pi/agent/auth.json (or $PI_CODING_AGENT_DIR/auth.json).

Merge this entry into the top-level object in that file:

{
  "fizzy": {
    "type": "api_key",
    "key": "YOUR_FIZZY_PERSONAL_ACCESS_TOKEN",
    "baseUrl": "https://app.fizzy.do"
  }
}

Notes:

  • baseUrl is optional if you always use https://app.fizzy.do/... URLs, but it is useful for self-hosted Fizzy instances.
  • key can be:
    • a literal token,
    • an environment variable name,
    • or a shell command prefixed with !.

Examples:

{
  "fizzy": {
    "type": "api_key",
    "key": "FIZZY_API_TOKEN"
  }
}
{
  "fizzy": {
    "type": "api_key",
    "key": "!op read 'op://Private/Fizzy/token'"
  }
}

Creating a Fizzy token

Fizzy supports personal access tokens.

In Fizzy:

  1. Open your profile.
  2. Go to the API section.
  3. Open Personal access tokens.
  4. Generate a new token.
  5. Give it permissions that cover the actions you want pi to perform.
  6. For /fizzy, /fizzydo, /fizzyplan, and fizzy_get_card, read access is enough.
  7. For fizzy_add_comment, fizzy_move_to_column, fizzy_mark_done, and fizzy_assign, the token also needs write access.