AI Agent Hub
Back to plugins
🖥️

dsh-uni-browser

Client Updated 2026.09.14

Run the following command in DeepSeek Harness:

dsh plugin install baixianger/dsh-uni-browser

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install baixianger/dsh-uni-browser in your DeepSeek Harness terminal to install this plugin; source code is available at https://github.com/baixianger/dsh-uni-browser

About this plugin

When a DSH agent bumps into a site that demands a logged-in session, the real friction is rarely the click or the form fill—it is re-authenticating from scratch every single time. dsh-uni-browser solves this by giving the agent a named browser profile: you open a visible window, sign in yourself once, and from that point forward the agent reuses the stored cookies, localStorage, and IndexedDB to navigate, snapshot, click, type, and press without repeating the login dance.

Under the hood the plugin launches a lightweight local daemon on demand to manage the browser runtime, defaulting to an already-installed Chrome or Chromium build and also supporting Camoufox through an environment variable. Every interaction flows through uni-browser's audited NDJSON interface rather than a raw debugging passthrough, so passwords and cookies never travel as tool parameters. Profile lifecycle is explicit—Open and Stop preserve local state, Forget removes it only after you confirm—and Chinese or other Unicode display names map to stable internal identifiers while keeping their original text in the settings UI.

It is built for DSH users whose agents must perform authenticated web tasks, who want isolated browser contexts across different projects, or who prefer to complete a sensitive sign-in in a visible window before handing the session over to automation.

Use Cases

  • Agent must operate an authenticated page without re-login every time
  • Isolate browser profiles across projects to prevent cross-session leakage
  • Complete a sensitive sign-in in a visible window, then hand off to automation
  • Agent navigates, clicks, types, and snapshots on a logged-in page

Best For

  • DSH users whose agents require authenticated web tasks
  • Teams that need isolated browser contexts across multiple projects
  • Developers who prefer manual sign-in first and audited interactions over raw debugging passthrough