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

@markab21/fizzy-cli

v0.1.2

Published

CLI for the Fizzy API - manage boards, cards, and tasks from the command line

Readme

fizzy-cli

License: MIT CI

CLI for the Fizzy API - manage boards, cards, and tasks from the command line.

Installation

Requires Bun runtime.

# Install globally
bun add -g @markab21/fizzy-cli

# Or run directly with bunx
bunx @markab21/fizzy-cli whoami

Configuration

Set your API token via environment variable or flag:

# Environment variable (recommended)
export FIZZY_TOKEN="your-api-token"
export FIZZY_ACCOUNT="your-account-slug"  # e.g., "123456"

# Or use flags
fizzy --token "your-token" --account "123456" whoami

Environment Variables

| Variable | Description | |----------|-------------| | FIZZY_TOKEN | API token (also accepts FIZZY_API_KEY) | | FIZZY_ACCOUNT | Account slug for board/card operations | | FIZZY_URL | Custom API base URL (default: https://app.fizzy.do) |

Usage

Global Options

--token <token>   API token (or use FIZZY_TOKEN env)
--account <slug>  Account slug (or use FIZZY_ACCOUNT env)
--url <url>       API base URL (or use FIZZY_URL env)
--json            Output as JSON (for scripting/agents)
-V, --version     Show version
-h, --help        Show help

Commands

Identity

# Show current identity and accounts
fizzy whoami

Boards

# List all boards
fizzy boards

# Get board details
fizzy boards:get <board-id>

# Create a board
fizzy boards:create --name "My Board"

# Update a board
fizzy boards:update <board-id> --name "New Name"

# Delete a board
fizzy boards:delete <board-id>

Cards

# List all cards
fizzy cards

# List cards with filters
fizzy cards --board <board-id>
fizzy cards --tag <tag-id>
fizzy cards --assignee <user-id>
fizzy cards --status closed

# Get card details
fizzy cards:get <card-number>

# Create a card
fizzy cards:create --board <board-id> --title "New Card"
fizzy cards:create --board <board-id> --title "New Card" --description "Details here"

# Update a card
fizzy cards:update <card-number> --title "Updated Title"

# Delete a card
fizzy cards:delete <card-number>

# Close/reopen a card
fizzy cards:close <card-number>
fizzy cards:reopen <card-number>

# Assign/unassign a user
fizzy cards:assign <card-number> --user <user-id>

# Add/remove a tag
fizzy cards:tag <card-number> --tag "bug"

JSON Output

Use --json flag for structured output (useful for scripting and AI agents):

fizzy --json cards
fizzy --json cards:get 42

Examples

# Quick workflow: list cards, get details, close
export FIZZY_TOKEN="your-token"
export FIZZY_ACCOUNT="123456"

fizzy cards
fizzy cards:get 42
fizzy cards:close 42

# Create a card with JSON output
fizzy --json cards:create --board abc123 --title "Fix bug"

# Use with a custom Fizzy deployment
fizzy --url https://fizzy.mycompany.com whoami

Development

# Install dependencies
bun install

# Run CLI locally
bun run index.ts whoami

# Run tests
bun test

# Lint
bun run lint

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT