try-works/dsh-browser-agent ↗★ 0
@try-works/dsh-browser-agent
DeepSeek Harness bundle: a Chrome browser for agents (browser_goto / browser_evaluate / browser_screenshot tools) with a live two-way pane inside the DSH Web GUI. The browser engine is a fork of zenbu-labs/terminal-browser with the React Ink terminal UI replaced by a DSH tool surface and web pane.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:try-works/dsh-browser-agent说明文档
阅读完整 README ↗Configuration
All fields are optional (schemastery defaults fill them). Override via the
profile's cordis.patch.yml:
- id: dsh-browser-agent
config:
chromePath: 'C:\Program Files\Google\Chrome\Application\chrome.exe'
viewport: { width: 1920, height: 1080 }
navTimeoutMs: 45000
scriptTimeoutMs: 20000
timeoutMs: 60000
headed: false
pane: true
| Field | Default | Purpose |
|---|---|---|
chromePath | system Chrome on Windows | Absolute path to a Chrome/Chromium executable. |
viewport | 1920 × 1080 | Default viewport for new pages (and the headed window size). |
navTimeoutMs | 45000 | page.goto navigation timeout. |
scriptTimeoutMs | 20000 | page.setDefaultTimeout (script/evaluate timeout). |
timeoutMs | 60000 | Per-tool execution timeout. |
headed | false | Launch a visible Chrome window instead of headless. The window is the same shared page the pane shows — two views of one browser. Needs a desktop session. |
pane | true | Serve the browser pane in the Web GUI. Headless/TUI compositions have no web server, so the pane never mounts there regardless. |