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

stably

v4.10.4

Published

AI-powered E2E Playwright testing CLI. Stably can understand your codebase, edit/run tests, and handle complex test scenarios for you.

Downloads

11,907

Readme

Stably CLI

This package extends Playwright to add new AI functionality. To get started quickly, please see AI-assisted setup guide. Otherwise continue to read below.

Installation

npm i -g stably

🎭 Note
We let you bring your own Playwright version. This does mean that Playwright must first be setup (our CLI can help you do that)

Usage

Below is a short list of common commands. For a complete list, please use stably --help

  • npx stably: This starts our REPL which will help with test creation or modifications
  • npx stably test: Use this to run tests locally or in the CI
  • npx stably --help: Will print full list of commands

Authentication

Stably CLI supports two auth modes:

  • API key via env vars (highest priority): set STABLY_API_KEY and STABLY_PROJECT_ID
  • Browser login (OAuth): run npx stably login (credentials are stored locally)

If both are present, the CLI will honor the environment variables and warn that stored OAuth credentials are being ignored. To switch back to browser login, unset the env vars.

Cheap local/CI agent testing (Ollama)

You can run the agent against Ollama via its Anthropic-compatible API (cheap, local, and deterministic enough for smoke tests). This is dev-only behavior (it is ignored in NODE_ENV=production builds).

  • STABLY_BYPASS_AI_PROXY=1 (dev-only; ensures we don't override ANTHROPIC_BASE_URL)
  • Dev-only convenience: STABLY_USE_OLLAMA=1 (dev-only; ignored when NODE_ENV=production)
  • STABLY_AGENT_MODEL=qwen2.5-coder:0.5b (fastest/cheapest suggested default)

Ollama: fastest local model (recommended)

If you want a convenience helper that starts Ollama (if needed), pulls the model, and prints the exact env vars to use:

pnpm ollama:dev-env

Notes:

  • On Linux, this script will try to install Ollama automatically (requires sudo or root).
  • On macOS, it will try Homebrew if available (brew install ollama / brew install --cask ollama); otherwise it will prompt you to install Ollama manually.
  1. Start Ollama and pull the tiny model:
ollama serve
ollama pull qwen2.5-coder:0.5b
  1. Run the CLI against Ollama (Anthropic-compatible API):
STABLY_BYPASS_AI_PROXY=1 STABLY_USE_OLLAMA=1 STABLY_AGENT_MODEL=qwen2.5-coder:0.5b pnpm dev