dsh-plugin-browserskill
August 29, 2026 · View on GitHub
npm: @wxg-prc-cpg/browser-skill-dsh-plugin
A DeepSeek Harness (dsh) tool plugin that exposes
BrowserSkill (bsk) browser automation to the model.
Each action maps to one bsk <cmd> --json invocation: the plugin spawns the bsk CLI, parses its
structured JSON output, and returns a canonical typed value. The bsk daemon, browser, and browser
extension keep owning the actual browser control — this package is a thin, well-typed bridge.
Tools
| Tool | Actions | Purpose |
|---|---|---|
browser_session | start, stop, list | Manage plugin-owned Agent Window sessions. |
browser_page | navigate, back, forward, reload, wait | Navigate the active tab and wait for page lifecycle events. |
browser_inspect | observe, snapshot, html, screenshot, console, network | Read semantic or diagnostic page state and capture screenshots. |
browser_interact | click, hover, fill, select, press | Interact with controls using fresh refs or selectors. |
browser_tabs | list, create, select, close, borrow, return | Manage Agent Window tabs and temporarily borrow user tabs. |
browser_assist | resize, emulate, request-help | Resize or emulate the browser and pause for human-only steps. |
bsk evaluate and bsk record are intentionally not exposed by this plugin: arbitrary page
evaluation is a higher-risk capability, while recording is long-running and needs a dedicated
DeepSeek Harness lifecycle before it can be added safely.
Agent skill (progressive disclosure)
Beyond the tools, the plugin publishes the browser-skill agent skill through the harness's
official skill seam (ctx.skills.register): the catalog entry (name + routing description) is
resident in <available_skills>, and the body is loaded only when the model invokes the skill
tool. Its single source is the DSH-specific skill/SKILL.md, which documents only structured
browser_* calls and their plugin semantics. The repository-root CLI skill is intentionally not
concatenated: its command examples belong to a different execution interface and would bypass
the plugin's ownership, live observation UI, cancellation, and cleanup path if followed directly.
The build rejects internal CLI-name leakage, command-line code blocks, unknown browser tools, and
missing supported browser tools before embedding the Markdown. Registration and every pre-step
catalog snapshot are pure in-memory reads (no disk/process/daemon); compositions without the skill
seam degrade silently.
Multi-session model
One agent conversation can drive several browser sessions at once:
browser_sessionwithaction: startreturns the session id and makes it the current session.- Every operation tool accepts an optional
sessionargument. When omitted, the call acts on the current session (the one most recently started or used); when given, that session becomes current. - Every tool result echoes the session it actually acted on, so the model never has to guess.
- The number of concurrent sessions started through the plugin is capped (
maxSessions, default 5). - Unloading the plugin stops every session it started and kills in-flight bsk processes.
Ownership boundary: the bsk daemon may be shared with other agents, terminals, or dsh
instances. The plugin therefore only ever sees and operates on sessions it created itself —
an explicit session argument naming a foreign or unknown id is rejected, the list action on
browser_session shows plugin-created sessions only (no daemon-wide view), and stop/unload cleanup
can never touch a session owned by another program.
Installation
The plugin follows the standard dsh bundle layout (dsh.bundle manifest + cordis.patch.yml):
dsh plugin --profile <name> add @wxg-prc-cpg/browser-skill-dsh-plugin
dsh --profile <name>
Prerequisite: the bsk CLI must be installed and on PATH, and the BrowserSkill browser extension
(Chrome or Edge) must be connected — see the
BrowserSkill README. When bsk is missing, tool calls fail
with install guidance instead of a bare spawn error.
Configuration
All fields are optional and validated through the plugin's Schemastery Config:
# cordis.patch.yml override example
- insert:
- id: browserskill
name: "@wxg-prc-cpg/browser-skill-dsh-plugin"
config:
bskPath: bsk # path to the bsk binary (default: resolve from PATH)
defaultTimeoutMs: 120000
maxSessions: 5
# observationEnabled: true # live PiP/overlay observation (below)
# thumbnailIntervalMs: 1500 # frame cadence while a session is active
# idleIntervalMs: 8000 # idle cadence / recent-activity window
# lazyTools: true # reveal browser_* tools only after the skill is invoked
lazyTools(defaulttrue) — the final progressive-disclosure stage: the sixbrowser_*tool schemas stay OUT of the system prompt (zero schema tokens) until thebrowser-skillskill is actually invoked — the skill catalog entry is the only advertisement. One successful invocation (model tool call, or a/browser-skilluser gesture) registers the whole suite for the rest of the process; repeated invocations are no-ops, and sessions resumed with a past invocation in their durable log reveal the suite on entry. Setfalsefor the legacy always-on registration.
Observation overlay (PiP mini-window)
When the plugin runs inside the dsh Web UI, an observation overlay floats over the app
(registered into the shell.overlay seat): a breathing thumbnail per owned session plus its
current action and elapsed time. The card docks at the top-right of the content area (clear of
the composer and the shell's header controls) and wears the BrowserSkill product family's own
look: the overlay reuses @browser-skill/ui components (Button, cn) and its oklch design
tokens (--card, --primary, --destructive, --ring, …), status dots spec'd after the
extension popup's connection indicator, and Remix icons. The BSK utility sheet is compiled
scoped under the .bsk-obs root class (scripts/build-client-css.mjs), so the overlay looks
like the BrowserSkill extension without leaking a single selector into the host shell — and the
shell's theme cannot bleed back in.
- Lifecycle: hidden while the plugin owns no sessions; appears on the first
browser_sessionstart action; disappears when all sessions stop (or the plugin unloads). - Focus view: status row (green/idle/red dot + session + action + mm:ss), the latest page frame (refreshes every ~1.5s while active, ~8s when idle; the last good frame stays on stage while the next one loads, and is kept on errors so the card does not flash), and a compact icon toolbar (Interrupt + Pop out, hover for the label).
- Interrupt: one click kills the in-flight bsk command of the focus session (same semantics as the chat Stop button — the current action fails, the agent run may continue). Strip items carry their own hover interrupt button.
- Multi-session strip: every session gets a tile (mini frame + id + status dot); focus auto-follows the most recently active session; clicking a tile pins focus (pin badge, click again to release); errored sessions get a red edge without stealing focus; sessions the daemon lost are greyed out; prolonged daemon/browser outage shows "browser unavailable" and greys the interrupt button until captures recover.
- Drag & resize: drag the header to move the card; drag any of the four corners to resize (min 240×180, max 80% of the viewport; no visible grip). Both are remembered for the page lifetime.
- Pop out (PiP): upgrades the card into a native Document PiP window (requires a user gesture, per browser rules), sized from the current card; closing the PiP falls back to the in-page card with state intact. Browsers without Document PiP simply hide the button.
- Wire: the host serves
GET /bsk-observation/state,GET /bsk-observation/events(SSE),POST /bsk-observation/interrupt, andGET /bsk-observation/thumbnail/<attachmentId>over the dshwebServerroute seam (dsh 0.1's Typert Remote pipeline is closed to out-of-tree packages). All commands for one session — tool calls and frame captures alike — run through a per-session FIFO, because the daemon accepts only one unfinished command per session. - Trust model: these routes expose live screenshots (and an interrupt write), so they
replicate the browser-trust fence dsh applies to its own
/apiroutes: the request Host must be a loopback authority (localhost,127.0.0.0/8,[::1]), a present Origin must match the Host,sec-fetch-site: cross-siteis refused, and POST requires anapplication/jsonbody (cross-site simple requests can never satisfy that). The channel is therefore built for loopback-only serving — binding the dsh web server to0.0.0.0and reaching it through a LAN address will (deliberately) fail the fence; do not put these routes behind a non-loopback reverse proxy without adding your own authentication. - Configure with
observationEnabled/thumbnailIntervalMs/idleIntervalMs.
Behavior notes
- Cancellation: aborting a tool call (
exec.signal) kills the underlying bsk child process, matching BrowserSkill's cooperative tool-cancellation model. - UI cards: calls render as terminal cards (command line as title, output as the completed card). Screenshots additionally attach the image itself when the host mounts an attachment store and the active model route declares image input; otherwise the PNG path is returned.
- Web UI toolview (browser half): the package is dual-face.
dsh.client(platformweb) shipslib/client.cjs, which registers a keyedtool.call.toolviewview forbrowser_inspect. The custom view keeps a terminal block for every inspect action and, when a screenshot result carries an image block, resolves the durable attachment through the client session's authorizedreadAttachmentRPC and renders it with the sharedMessageImagethumbnail/lightbox atoms. The other five tools keep the stock terminal card. The bundle follows the dsh client contract: a CJS closure factory handed towindow.__ModuleLoader__.load, platform modules (react,dsh-client-ui-*) external, everything else inlined, CSS Modules compiled by lightningcss. - Errors: non-zero bsk exits surface the CLI's JSON error envelope (
code,message,hint) so the model gets the daemon's actionable guidance. - Long-running work (e.g.
bsk record) is not backgrounded viactx.jobsyet — tracked as a follow-up.
Development
pnpm install
pnpm --filter @wxg-prc-cpg/browser-skill-dsh-plugin typecheck
pnpm --filter @wxg-prc-cpg/browser-skill-dsh-plugin test # unit tests mock bsk; no browser needed
pnpm --filter @wxg-prc-cpg/browser-skill-dsh-plugin build # tsdown -> lib/
Publishing
The GitHub Actions workflow Release dsh plugin publishes this package to npm
as @wxg-prc-cpg/browser-skill-dsh-plugin. The Cordis plugin id, client
bundle registration, and cordis.patch.yml name are the same specifier so
dsh can import and materialize the plugin without a ModuleLoader id mismatch.
Trigger it by pushing a tag that matches package.json's version:
git tag dsh-plugin-v0.1.2
git push origin dsh-plugin-v0.1.2
Or run the workflow from the Actions tab (workflow_dispatch). The job reads the
NPM_TOKEN secret from the npm-publish GitHub Environment.
License
MIT