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

@ouija-dev/cli

v0.4.1

Published

Command-line interface for the Ouija pipeline engine — init, up, down, logs, doctor.

Readme

@ouija-dev/cli

Command-line interface for the Ouija pipeline engine. Bootstrap a project, start the stack, tail logs, and run preflight checks — without cloning the repo.

Install

No install needed — use npx:

npx @ouija-dev/cli init

Or install globally:

npm install -g @ouija-dev/cli
ouija --help

Quick start

mkdir my-ouija && cd my-ouija
npx @ouija-dev/cli init      # generates secrets, copies docker/ + config
$EDITOR ouija.config.yaml    # set your repo URL and prompt
npx @ouija-dev/cli up        # starts Ouija + Postgres + Redis
npx @ouija-dev/cli doctor    # preflight audit

After init, your directory will contain:

my-ouija/
├── .env                         # generated secrets + empty credential slots
├── ouija.config.yaml            # agent + board config (copy of example)
├── docker/
│   ├── Dockerfile
│   ├── docker-compose.ouija.yml
│   ├── docker-compose.yml
│   └── docker-compose.fizzy.yml
└── infra/
    └── setup.sh

Commands

ouija init [--force] [-y|--non-interactive]

Bootstrap a project in the current directory:

  1. Copies the bundled docker/, infra/setup.sh, and ouija.config.example.yaml
  2. Generates OUIJA_SECRET_KEY, PLANE_SECRET_KEY, PLANE_WEBHOOK_SECRET and writes them to .env
  3. Interactively prompts for PLANE_API_TOKEN / FIZZY_ACCESS_TOKEN, ANTHROPIC_API_KEY, GITHUB_PAT (unless -y is passed)

Flags:

  • --force, -f — overwrite existing .env and ouija.config.yaml
  • --non-interactive, -y — skip credential prompts, write placeholders

ouija up [--stack ouija|full|fizzy] [--foreground]

Start the docker stack. Default stack is ouija (BYO kanban). Runs detached (-d) by default; pass --foreground to stream logs.

ouija up                    # Ouija + Postgres + Redis
ouija up --stack full       # + self-hosted Plane
ouija up --stack fizzy      # + self-hosted Fizzy

ouija down [--stack ...] [-v|--volumes]

Stop the stack. Volumes are preserved by default — pass -v to also delete Postgres and Redis data.

ouija logs [service] [--stack ...] [--no-follow]

Tail docker compose logs. Follows by default; --no-follow prints once and exits.

ouija logs                   # all services
ouija logs ouija             # only the ouija container
ouija logs --stack full      # full stack
ouija logs --no-follow       # last 200 lines, no tail

ouija status [--stack ...] (alias: ps)

docker compose ps for the stack.

ouija doctor

Preflight audit of the current directory. Checks:

  • Docker Compose v2, git, openssl on PATH
  • .env exists and OUIJA_SECRET_KEY is 32+ chars
  • ouija.config.yaml exists and has an agents: section
  • Agent config is customized (not the example URL)
  • docker/ compose files are present
  • ANTHROPIC_API_KEY is set OR claude CLI is available

Prints a pass/warn/fail report. Exit code 0 on success (even with warnings), 1 on any failure. Great to run as a CI smoke test or before filing an issue.

ouija help / ouija version

What you'd expect.

Stacks

| Stack | Contents | RAM | Use when | |--------|----------------------------------------------|--------|----------| | ouija (default) | Ouija + Postgres + Redis | ~1.5GB | You already have a kanban board (Plane Cloud, Jira, Linear, etc.) | | full | Ouija + Postgres + Redis + Plane | ~5GB | You want a self-contained demo with Plane bundled in | | fizzy | Ouija + Postgres + Redis + Fizzy | ~3GB | You prefer Fizzy over Plane |

Environment

The CLI reads nothing from env vars — everything lives in the project's .env. The commands pass --project-directory $(pwd) to docker compose so .env is discovered from the project root, not the compose file's own directory.

Requirements

  • Node.js 20+
  • Docker Desktop or Docker Engine with the compose plugin (v2)

License

Apache-2.0. See LICENSE at the repo root.