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

@saola.ai/github-agent

v0.1.3

Published

Saola GitHub Agent CI runner — generate and repair Playwright e2e tests on PRs

Readme

Saola GitHub Agent

Runs in your CI on pull requests. It reviews the PR diff, explores your running app with Playwright, and commits generated e2e specs back onto the same branch.

Setup

  1. Add a repository secret: SAOLA_API_TOKEN (from your Saola account).
  2. Add a workflow that starts your app, then runs the agent. Copy examples/workflow.yml into .github/workflows/, or use:
name: Saola E2E Agent

on:
  pull_request:
    types: [opened, synchronize]

concurrency:
  group: saola-agent-${{ github.event.pull_request.number }}
  cancel-in-progress: true

jobs:
  saola-agent:
    runs-on: ubuntu-latest
    env:
      BASE_URL: http://localhost:3000
    permissions:
      contents: write
      pull-requests: write
      checks: write
    steps:
      - uses: actions/checkout@v4
        with:
          ref: ${{ github.head_ref }}
          fetch-depth: 0

      # Start your app so it is reachable in this job
      - uses: actions/setup-node@v4
        with:
          node-version: "20"
      - run: npm ci
      - run: npm run build
      - run: npm start &
      - run: npx wait-on ${{ env.BASE_URL }}

      - name: Saola GitHub Agent
        run: npx --yes @saola.ai/github-agent@latest run --base-url ${{ env.BASE_URL }} --output-dir e2e/saola
        env:
          SAOLA_API_TOKEN: ${{ secrets.SAOLA_API_TOKEN }}
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Replace the npm ci / build / start steps with whatever boots your app. Point BASE_URL at that URL.

Permissions

| Permission | Why | | --- | --- | | contents: write | Commit and push generated tests to the PR branch | | pull-requests: write | Post or update the run summary on the PR | | checks: write | Attach check status when applicable |

GITHUB_TOKEN is provided by Actions; you only need to add SAOLA_API_TOKEN.

Options

| Flag | Default | Description | | --- | --- | --- | | --base-url | required | URL of the app under test in the job | | --output-dir | e2e/saola | Where generated Playwright specs are written | | --browser | chromium | chromium, firefox, or webkit | | --max-tests-per-pr | 3 | Cap on tests generated for a single PR | | --dry-run-commit | off | Write files but do not commit or push |

Requirements

  • Node.js 20+
  • Your app reachable at --base-url before the agent starts