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

@artsnlabs/xci

v0.2.0

Published

Local GitHub Actions runner UX powered by act.

Readme

XCI

npm version npm downloads license CI

XCI is a local GitHub Actions runner UX for running workflows locally with a polished terminal experience, delegating execution to act.

Features

  • Discover workflows under .github/workflows/*.yml
  • Interactive selection of workflows and jobs
  • Non-interactive usage with flags
  • Local runs via act with Docker/Podman
  • Run history and logs under .xci/runs/<run-id>/

Architecture

XCI is built as a small set of layers with strict dependency direction:

core -> engine + store -> cli + tui

Key modules:

  • src/core/: workflow discovery + parsing
  • src/engines/: engine adapters (v1: act)
  • src/store/: run persistence
  • src/cli/: CLI wiring and non-interactive usage
  • src/tui/: Ink UI rendering

See docs/architecture.md for details.

Demo

XCI demo placeholder

Requirements

  • Node.js 18+
  • act installed and available on PATH
  • Docker or Podman running

Install

npm i -g @artsnlabs/xci

Homebrew (tap, available now):

brew tap moehaje/tap
brew install xci

Tap installs xci with act; Docker or Podman still needs to be running.

Homebrew one-command install:

brew install moehaje/tap/xci

For release/update flow, see docs/homebrew-core.md.

Usage

Examples below use both xci and xci run forms.

Global install:

xci
xci run
xci run --workflow ci.yml --event push --job build-and-test
xci run --workflow ci.yml --all --json

Without global install:

npx xci
npx xci run
npx xci run --workflow ci.yml --event push --job build-and-test
npx xci run --workflow ci.yml --all --json

Configuration

Create a .xci.yml at the repo root:

engine: act
runtime:
  container: docker
  architecture: amd64
  cleanupMode: fast
  image:
    ubuntu-latest: ghcr.io/catthehacker/ubuntu:act-latest
presets:
  quick:
    jobs: [build-and-test, code-quality]

Cleanup modes:

  • off: skip post-run cleanup
  • fast (default): remove act containers and ephemeral act volumes, keep act-toolcache + images
  • full: remove act containers, all act volumes (including act-toolcache), and act images

Use --no-cleanup to force off for one run, or --cleanup-mode off|fast|full to override per run.

Project Health

Development

npm install
npm run build
npm run type-check

Docs:

  • docs/architecture.md
  • docs/testing.md
  • docs/exit-codes.md

License

MIT