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

@clawnify/browser-tabs

v0.1.0

Published

OpenClaw plugin — per-agent browser tab isolation over one shared Chrome: each agent may only act on tabs it opened; omitted-target actions default to its own tab. Interim action-isolation via tool-call hooks; complete list-scoping proposed upstream.

Readme

@clawnify/browser-tabs

Per-agent browser tab isolation for OpenClaw agents that share one Chrome.

Why

Clawnify runs multiple agents (main + specialists) in one gateway driving a single shared Chrome over one CDP endpoint. They therefore share one flat tab namespace, and when several run at once they collide — the live gateway logs show tab not found, action targetId must match request targetId, and stale refs, because one agent's snapshot/act lands on a tab another agent changed.

This plugin scopes the browser per agent so an agent may only act on tabs it opened, while all agents keep the same shared profile (shared logins).

What it does

Entirely at the tool-call boundary (no browser fork required):

  • after_tool_call (observe) — reads every browser result to track the current targetId/tabId/label handles, assign ownership of tabs an agent opens (or first acts on, keyed by ctx.agentId), and prune closed tabs.
  • before_tool_call (enforce) — blocks a target that resolves to another agent's tab, and injects the agent's own last tab when the model omits a target on snapshot/act/screenshot/console (so the shared service can't default onto a foreign tab).

Scope (honest)

This delivers action isolation — agents can't act on each other's tabs and default onto their own, which removes the collision errors above. It does not hide foreign tabs from the action=tabs list: a plugin cannot rewrite the live tool result the model sees (after_tool_call is observe-only; tool_result_persist only transforms the persisted copy). Complete list-scoping requires a browser-service change, proposed upstream to openclaw/openclaw. Since a VPS is a single organization, the residual visibility is intra-tenant.

Enforcement is fail-open on unobserved handles (never breaks a legitimate first use) and fail-safe on known-foreign handles (blocked). The airtight, list-scoping version is the upstream change.

Config

{ "enabled": true } // default; set false to disable without uninstalling

Install

Pure string/Map work — no child_process/eval — so it loads as a normal external plugin (unlike the bundled browser plugin). Shipped to the fleet via the standard Clawnify internal-plugin pattern (R2 tarball + cloud-init register in openclaw.json plugins.entries/load.paths/allow), the same path as @clawnify/secret-inputs.

MIT.