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

kici

v0.1.18

Published

Developer CLI for the KiCI CI/CD stack. Compile workflows, run them locally, and interact with a remote orchestrator from the command line.

Readme

KiCI

TypeScript-native CI/CD workflow engine. Define your CI in TypeScript, test it locally, run it anywhere.

kici is the developer CLI for KiCI: scaffold a .kici/ workflow directory, compile workflows, dry-run them against synthetic or real events, and execute them locally or against a remote orchestrator.

Quickstart

npm install -g kici
kici init
kici test pr:open
kici run local push

Full quickstart with the hosted dashboard and a customer-deployed orchestrator: https://docs.kici.dev/user/quickstart/.

Packages

| Package | License | Description | | --------------------------------------------------------------------------------------------------- | ------------- | -------------------------------------------------------------------- | | kici | Apache-2.0 | Developer CLI wrapper — author + drive workflows | | @kici-dev/sdk | Apache-2.0 | Workflow definition SDK (workflow, job, step, triggers) | | @kici-dev/compiler | Apache-2.0 | CLI tooling: kici init, kici compile, kici test, kici run | | @kici-dev/core | Apache-2.0 | Light shared utilities (no server-side dependencies) | | @kici-dev/shared | Apache-2.0 | Shared utilities (logging, crypto, telemetry, health routes) | | @kici-dev/engine | AGPL-3.0-only | Core business logic (protocol, triggers, state machine) | | @kici-dev/agent | AGPL-3.0-only | Customer-deployable agent (clone, execute, stream logs) | | @kici-dev/orchestrator | AGPL-3.0-only | Customer-deployable orchestrator (triggers, dispatch, queue, scaler) | | kici-admin | AGPL-3.0-only | Orchestrator admin CLI |

License details: https://github.com/kici-dev/kici-public/blob/main/LICENSES.md. Per-package LICENSE files live alongside each package.

Container images

The two customer-deployable services ship as container images on Quay:

  • quay.io/kici-dev/kici-orchestrator
  • quay.io/kici-dev/kici-agent

A reference compose file is at https://github.com/kici-dev/kici-public/blob/main/examples/quickstart/compose/docker-compose.yaml.

Building from source

pnpm install
pnpm -r run build
pnpm -r run test

Requires Node 24, pnpm 11+.

Where development happens

Day-to-day development happens in a private upstream monorepo. The public repo (github.com/kici-dev/kici-public) is a projection of KiCI's open-source packages — 9 packages, the docs, the examples tree, and a few overlay files. Each release lands as a single squash commit on main.

Issues and PRs are welcome at https://github.com/kici-dev/kici-public — see https://github.com/kici-dev/kici-public/blob/main/CONTRIBUTING.md for the back-port flow, the issue triage policy, and how to route security reports.

Status

KiCI is actively developed and dogfooded in production. It is pre-1.0 — protocols and the CLI surface can change between minor versions, so pin versions for production.