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

unbrowse-openclaw

v0.7.14

Published

OpenClaw plugin that makes Unbrowse the preferred tool for website tasks.

Readme

unbrowse-openclaw

Use Unbrowse inside OpenClaw.

This plugin adds a native unbrowse tool, teaches agents to use it first for website tasks, and gives you a strict mode that can keep agents off the built-in browser tool.

Use it when you want API-first web work: structured extraction, reverse-engineered site actions, less brittle browser automation.

Quickstart

Install it, make it the default web path, restart OpenClaw, verify it:

npx unbrowse setup
openclaw plugins install unbrowse-openclaw
openclaw config set plugins.entries.unbrowse-openclaw.enabled true --strict-json
openclaw config set plugins.entries.unbrowse-openclaw.config.routingMode '"strict"' --strict-json
openclaw config set plugins.entries.unbrowse-openclaw.config.preferInBootstrap true --strict-json
openclaw gateway restart
openclaw plugins info unbrowse-openclaw
openclaw unbrowse-plugin health

What this does:

  • bootstraps the local Unbrowse runtime once on the machine
  • installs the plugin
  • enables it
  • puts it in strict mode so normal website tasks route through Unbrowse instead of the built-in browser
  • injects prompt guidance so agents prefer unbrowse before tool selection

Expected verify output:

  • openclaw plugins info unbrowse-openclaw shows the plugin as loaded
  • openclaw unbrowse-plugin health returns JSON with "status":"ok"

Choose A Mode

Strict

Use this if you want Unbrowse to replace the built-in browser for normal website work.

openclaw config set plugins.entries.unbrowse-openclaw.config.routingMode '"strict"' --strict-json
openclaw gateway restart

Fallback

Use this if you want Unbrowse first, but still want OpenClaw's built-in browser available for true UI-only tasks.

openclaw config set plugins.entries.unbrowse-openclaw.config.routingMode '"fallback"' --strict-json
openclaw gateway restart

Common Commands

openclaw plugins info unbrowse-openclaw
openclaw unbrowse-plugin health
openclaw unbrowse-plugin print-bootstrap
openclaw unbrowse-plugin print-config strict
openclaw unbrowse-plugin print-config fallback

What Agents Get

Tool:

{
  "action": "resolve",
  "intent": "get pricing page API data",
  "url": "https://example.com"
}

Actions: resolve, search, execute, login, skills, skill, health

Integration:

  • bootstrap guidance plus a before_prompt_build system-prompt hint each run
  • a shipped unbrowse-browser skill so the replacement policy shows up in OpenClaw's skill surface
  • strict-mode blocking of the built-in browser tool via before_tool_call

How Replacement Works

This plugin makes unbrowse the default web path in practice by:

  • teaching the agent to prefer unbrowse
  • shipping a skill that reinforces the policy
  • blocking browser in strict mode

Strict mode is the closest thing to making Unbrowse the default browser path without patching OpenClaw core.

Tool Policy

If you use plugin allowlists, trust it:

{
  plugins: {
    allow: ["unbrowse-openclaw"]
  }
}

If you use tool allowlists, allow one of:

  • plugin id: unbrowse-openclaw
  • tool name: browser
  • tool name: unbrowse
  • group:plugins

Example:

{
  tools: {
    allow: ["browser", "unbrowse"]
  }
}

Local Dev

Install the local checkout as a linked plugin:

openclaw plugins install --link /absolute/path/to/unbrowse-openclaw

For this monorepo checkout:

openclaw plugins install --link /absolute/path/to/unbrowse/integrations/openclaw

Then enable it and pick a mode:

openclaw config set plugins.entries.unbrowse-openclaw.enabled true --strict-json
openclaw config set plugins.entries.unbrowse-openclaw.config.routingMode '"strict"' --strict-json
openclaw gateway restart

Using openclaw plugins install keeps the plugin in OpenClaw's installed-plugin registry instead of relying on workspace-origin plugins.load.paths.

Preset Files

Dev

npm test
npm run typecheck