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

@elyracode/browser-tools

v0.9.30

Published

Browser automation for Elyra via Playwright - the agent navigates, clicks, fills, and verifies behavior, with token-cheap accessibility snapshots and screenshots

Downloads

222

Readme

@elyracode/browser-tools

Browser automation for Elyra, built on Playwright. The agent gets hands in a real browser: navigate, click, fill, verify — with token-cheap accessibility snapshots as the primary way of seeing, and pixel screenshots when looks matter.

This completes Elyra's verification ladder: LSP auto-diagnostics check the code, design-tools check the looks, browser-tools check the behavior.

Install

elyra install npm:@elyracode/browser-tools
npx playwright install chromium   # browser binaries (once)

If the bundled Chromium is missing, installed Google Chrome is used as a fallback. Every failure names its fix — nothing degrades silently.

Tools

| Tool | Description | |------|-------------| | browser_navigate | Open a URL; returns title, accessibility snapshot, and console errors | | browser_snapshot | Re-read the current page (optionally scoped to a css selector) | | browser_interact | click / fill / press / select / check / uncheck / hover, targeted by role+name, label, text, or css; returns the resulting page state | | browser_screenshot | Element, viewport, or full-page screenshot; optional viewport resize for responsive checks | | browser_run_tests | Run npx playwright test (a spec path or --grep filter) and summarize | | browser_close | Close the session's tab |

One persistent headless tab per session: login state and SPA state survive across tool calls, so flows chain naturally. The tab closes with the session.

Commands

| Command | Description | |---------|-------------| | /browser <url> | Open a URL and describe the page + console state |

Design notes

  • Snapshot-first: accessibility snapshots (Playwright's aria snapshot) are the primary page representation — a fraction of a screenshot's token cost, and they name every interactive element precisely for targeting.
  • Console errors ride along with every result, drained since the last report.
  • Screenshots respect provider limits: oversized captures are downscaled by Elyra core before reaching the model.
  • Interactions auto-wait (Playwright semantics) with a 10s timeout and actionable failure messages.

Example

> Verify note capture works end to end on https://freddy.test

  browser_navigate https://freddy.test
  browser_interact fill label="Note" value="Buy more RAM"
  browser_interact press label="Note" value="Enter"
  browser_snapshot -> list now contains "Buy more RAM"
  Console: clean