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

web-agent-bridge-sdk

v2.4.0

Published

SDK for building AI agents that interact with Web Agent Bridge (WAB)

Readme

WAB Agent SDK

SDK for building AI agents that interact with Web Agent Bridge.

Quick Start

const puppeteer = require('puppeteer');
const { WABAgent } = require('web-agent-bridge/sdk');

const browser = await puppeteer.launch();
const page = await browser.newPage();

const agent = new WABAgent(page);
await agent.navigateAndWait('https://example.com');

// Discover available actions
const actions = await agent.getActions();
console.log(actions);

// Execute an action
const result = await agent.execute('signup', { email: '[email protected]' });

// Read page content
const content = await agent.readContent('h1');

await browser.close();

BiDi Mode

const agent = new WABAgent(page, { useBiDi: true });
await agent.waitForBridge();

const context = await agent.getBiDiContext();
const actions = await agent.getActions();
await agent.execute('click-login');

API

| Method | Description | |---|---| | waitForBridge() | Wait for WAB to load on the page | | hasBridge() | Check if WAB is available | | getActions(category?) | List available actions | | getAction(name) | Get a specific action | | execute(name, params?) | Execute an action | | readContent(selector) | Read element text content | | getPageInfo() | Get page metadata | | authenticate(apiKey, meta?) | Authenticate the agent | | navigateAndWait(url) | Navigate and wait for bridge | | executeSteps(steps) | Execute multiple actions in sequence | | executeParallel(actions) | Execute multiple actions in parallel | | getBiDiContext() | Get BiDi context (BiDi mode only) |

Cross-Site Agent Orchestration

Manage multiple WAB-enabled sites simultaneously with WABMultiAgent:

const { WABMultiAgent } = require('web-agent-bridge-sdk');

const multiAgent = new WABMultiAgent([
  'https://site1.com',
  'https://site2.com',
  'https://site3.com'
]);

await multiAgent.launch();

// Compare prices across all sites
const comparison = await multiAgent.comparePrices('product-sku');
console.log(comparison.cheapest);  // { site, price, currency }
console.log(`You save: $${comparison.savings}`);

// Execute any action on all sites in parallel
const infos = await multiAgent.executeAll('getPageInfo');

// Discover capabilities across all sites
const discoveries = await multiAgent.discoverAll();

await multiAgent.close();

WABMultiAgent API

| Method | Description | |---|---| | launch() | Connect to all sites | | discoverAll() | Discover actions on all sites | | executeAll(action, params?) | Run action on all sites in parallel | | comparePrices(sku) | Compare prices and find cheapest deal | | compareAction(action, params?, rankFn?) | Compare action results with custom ranking | | navigateAll(path) | Navigate all sessions to a path | | screenshotAll(opts?) | Screenshot all sites | | status() | Get connection summary | | close() | Close all browser sessions |