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

ci-workflow

v3.0.1

Published

A TUI for monitoring project statuses from various services like GitHub and Vercel.

Readme

CI-WORKFLOW TUI

A terminal-based UI to display project statuses from various sources like GitHub and Vercel. This tool provides a unified dashboard to monitor the status of all your projects in an elegant terminal interface.

Default Minimal

Features

  • Unified Dashboard: View the status of all your projects in a single terminal interface.
  • GitHub Integration: Monitor workflow runs for the latest commit of any repository.
  • Vercel Integration: Track deployment statuses for your Vercel projects.
  • History Sparkline: Visual history of up to 40 past workflow runs rendered as color-coded blocks.
  • Filtering: Quickly filter to show only projects with at least one failed status (x key).
  • Manual Refresh: Reload data on demand with the r key.
  • Auto-Poll: Data refreshes automatically every 60 seconds.
  • Minimal View: A compact, denser layout showing one row per workflow run (--minimal flag).
  • Debug Console: Toggle an embedded debug console (Ctrl+L).
  • Extensible: A Service interface makes it straightforward to add new provider integrations.

Prerequisites

Installation

npm install -g ci-workdlow

Configuration

Authentication is handled via the gh and vercel CLIs. There is no config file; all options are passed as CLI arguments.

GitHub

Authenticate with the GitHub CLI before running:

gh auth login

The application checks for GitHub authentication at startup and will exit with an error if gh is not authenticated.

Vercel

Authenticate with the Vercel CLI before running:

vercel login

You can also set the VERCEL_BEARER environment variable with a Vercel API token as an alternative.

Usage

ci-workflow --git owner/repo1 --git owner/repo2 --vercel project1 --vercel project2

CLI Arguments

| Argument | Description | |---|---| | --git <owner/repo> | GitHub repository to monitor, in owner/repo format. Can be repeated. | | --vercel <project> | Vercel project name to monitor. Can be repeated. | | --minimal | Start in the compact/minimal layout (one row per workflow run). |

Examples

# Monitor multiple GitHub repos and a Vercel project
ci-workflow --git facebook/react --git vercel/next.js --vercel my-app

# Monitor only Vercel projects in minimal mode
ci-workflow --vercel my-app --vercel my-other-app --minimal

# Monitor a single GitHub repo
ci-workflow --git owner/repo

Keyboard Shortcuts

| Key | Action | |---|---| | x | Toggle "show only failed" filter | | r | Manually refresh all data | | Ctrl+L | Toggle the debug console | | Ctrl+C | Exit the application |

Development

Prerequisites

  • Bun runtime
  • Node.js 23.2.0 (see .nvmrc)

Setup

bun install

Run in development mode (with file watching)

bun run dev

Build a compiled binary

bun run build

This compiles the project into a self-contained executable at ./dist/cli.


Built with OpenTUI.