Plugin directory / Browser / dsh-better-deepseek
dsh-better-deepseek
Unverified EdgeTypE
What it does
DeepSeek Harness bridge plugin for Better DeepSeek Chrome extension.
Unverified — not yet verified
DeepSeek Harness bridge plugin for Better DeepSeek Chrome extension. Not yet verified — install and test it yourself.
“Unverified” means our automated CI has not yet installed this plugin. Feature descriptions and version compatibility are the author’s claims. This is not a security audit and not an endorsement of third-party code.
README
dsh-better-deepseek
DeepSeek Harness bridge plugin for Better DeepSeek Chrome extension integration. Provides an HTTP handshake endpoint and session-filtered SSE event streams over webServer.
Installation
Via DSH (npm)
dsh plugin --profile web add -w dsh-better-deepseek
or
npx @deepseek-ai/dsh --profile web add -w dsh-better-deepseek
Plugin
BetterDeepSeekBridgeService registers /api/better-deepseek/* endpoints on ctx.webServer.
| Endpoint | Method | Purpose |
|---|---|---|
/api/better-deepseek/ping |
GET | Handshake and health check |
/api/better-deepseek/events |
GET | Server-Sent Events (SSE) live stream |
/api/better-deepseek/session.create |
POST | Initialize an agent session with cwd |
/api/better-deepseek/session.prompt |
POST | Submit a task/prompt to the session |
/api/better-deepseek/session.result |
GET | Fetch final Markdown report and status |
/api/better-deepseek/session.cancel |
POST | Cancel a running task |
| Config | Default | Meaning |
|---|---|---|
enableCors |
true |
Enables Access-Control-Allow-Origin headers for cross-origin browser extension requests. |
Install
Install the catalog once, then DeepSeek Harness can find and install any plugin from this site automatically:
dsh plugin add dshbase-catalog Then say "install dsh-better-deepseek for me" — your agent finds it in the directory and installs it. Docs: dshbase-catalog · verified packs.
This plugin is GitHub source (not published to npm) — install it straight from the repo:
Web profile:
dsh plugin --profile web add github:EdgeTypE/dsh-better-deepseek Headless (CLI) profile:
dsh plugin --profile headless add github:EdgeTypE/dsh-better-deepseek Test report
Not yet L3-verified — see failure note below if we already ran it.
Note: 验证: install-fail (0.1.0-rc.6) Browse all pending failures →
When to use it
Let the agent drive a real browser — navigate, click, fill, and read pages — for research or UI testing.
Who it's for
Users who want browser automation done by the agent rather than a separate scraper or test script.
For developers — extending it
Browser actions are the seam — expose more tool calls (form fill, downloads, tab management) to the model.