try-works/dsh-browser-agent ↗★ 0
@try-works/dsh-browser-agent
为 Agent 提供的 Chrome 浏览器 DSH 捆绑包,包含网页跳转、执行、截图工具,并在 DSH Web 界面中提供双向交互面板。
AI 分析
核心用途是为 AI Agent 提供网页浏览与操作能力。适合需要让 Agent 执行网页自动化任务、抓取数据或进行视觉确认的用户,需系统安装有 Chrome 浏览器。
安装
$
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. |