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

@elizaos/plugin-browser-bridge

v0.1.1

Published

Agent Browser Bridge plugin: schema, contracts, routes, and packaging utilities for Chrome/Safari browser companions. Generic counterpart to LifeOps' workflow-bound browser sessions.

Readme

@elizaos/plugin-browser-bridge

Agent Browser Bridge plugin: schema, contracts, HTTP routes, and packaging utilities for Chrome/Safari browser companions.

Scope

This plugin owns the generic browser-companion surface:

  • Four Drizzle tables: browser_bridge_companions, browser_bridge_settings, browser_bridge_tabs, browser_bridge_page_contexts.
  • /api/browser-bridge/* HTTP routes for pairing, settings, companion sync, tab + page-context ingest, packaging artifacts, and workflow-linked session progress endpoints.
  • Companion package build + download helpers, including release-manifest synthesis for GitHub Releases.
  • Contract types under the BrowserBridge* prefix.

The workflow-bound life_browser_sessions table intentionally stays in @elizaos/app-lifeops because it carries workflowId plus LifeOps-only scoping columns (domain, subjectType, subjectId, visibilityScope, contextPolicy). Session endpoints here therefore call into @elizaos/app-lifeops/lifeops/service to operate on that table.

Destructive migration

This plugin renames the four previously life_browser_* tables to browser_bridge_*. Because the generated Drizzle migrations will issue a plain CREATE TABLE for the new names (with no RENAME bridge), the first boot after this package lands must run with:

ELIZA_ALLOW_DESTRUCTIVE_MIGRATIONS=true

set in the environment. That flag is the existing escape valve wired into @elizaos/plugin-sql's migrator (see repository.ts:1389 in plugin-sql). Use that flag only for throwaway or explicitly approved migration runs.

Integration

Eliza loads browserBridgePlugin as a core runtime plugin so the Browser Workspace UI, agent actions, and companion extension use the same API surface.

import { browserBridgePlugin } from "@elizaos/plugin-browser-bridge/plugin";

Authentication

Companion-scoped endpoints (/api/browser-bridge/companions/sync, /api/browser-bridge/companions/sessions/:id/*) require two headers:

  • X-Browser-Bridge-Companion-Id: <companion uuid>
  • Authorization: Bearer <pairing token>

The legacy X-LifeOps-Browser-Companion-Id and x-eliza-browser-companion-id headers were removed — no alias fallback is accepted.