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

dsh-browser-use

v0.1.0

Published

Browser Use bridge for DeepSeek Harness: let your dsh agent run real web tasks (open pages, click, type, fill forms, extract data) through the Browser Use Cloud API.

Readme

dsh-browser-use

Browser Use bridge for DeepSeek Harness: let your dsh agent run real web tasks — open pages, click, type, fill forms, extract data — through the Browser Use Cloud API.

CI License: MIT

English | 中文

What it is

A thin, honest bridge. It registers one model-facing tool, browser_use_run, forwards the task to Browser Use's cloud endpoint, and returns the raw run result. It does not reimplement Browser Use and does not claim to be a full integration.

Install

dsh plugin --profile web add dsh-browser-use

Then set your Browser Use API key (config apiKey, or the BROWSER_USE_API_KEY env var).

Tool

| Parameter | Type | Description | | --- | --- | --- | | task | string | The task, e.g. "Find the stars of the browser-use repo". | | model | string | Optional provider-prefixed model id, e.g. openai/gpt-5.5. |

Returns { result } — the raw Browser Use run result.

Config

| Key | Type | Default | Description | | --- | --- | --- | --- | | apiKey | string | (env) | Browser Use API key | | baseUrl | string | https://api.browser-use.com | Cloud API base URL | | timeoutMs | number | 300000 | Request timeout | | model | string | (none) | Default model |

Verified

  • pnpm typecheck · pnpm build · pnpm test (4 tests, mocked HTTP).
  • Tested with @deepseek-ai/dsh-tools ^0.1.0-rc.6.

Honest limits

  • This is a cloud-API bridge; it needs a Browser Use API key.
  • It returns the raw response; it does not stream or poll for completion.
  • Community plugin, not an official Browser Use or DeepSeek product.

中文

给 DeepSeek Harness 的 Browser Use 桥接:让 dsh agent 通过 Browser Use 云 API 执行真实网页任务(打开页面、点击、输入、填表、抽取数据)。

注册一个 browser_use_run 工具:把任务转发给 Browser Use,返回原始运行结果。 这是薄桥接,不重新实现 Browser Use,也不冒充官方。

dsh plugin --profile web add dsh-browser-use

需要配置 Browser Use API key(apiKey 配置项,或环境变量 BROWSER_USE_API_KEY)。