menotbobbybrown/dsh-plugin-browser ↗★ 0
dsh-plugin-browser
用于 DeepSeek Harness 的原生无头与可视化网页浏览器自动化 Agent 插件
AI 分析
核心用途是提供网页浏览器自动化能力。适合需要让 Agent 自动导航网页、提取干净的 Markdown 内容以及捕获网页截图的任务。
安装
此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗
说明文档
阅读完整 README ↗CLI Usage
## Programmatic Usage (Cordis API)
```typescript
import { Context } from 'cordis';
import * as BrowserPlugin from 'dsh-plugin-browser';
const ctx = new Context();
ctx.plugin(BrowserPlugin);
// Navigate to a URL
await ctx.browser.navigate('https://deepseek.com');
// Extract clean markdown
const { markdown, links } = await ctx.browser.extract();
// Capture screenshot
const screenshot = await ctx.browser.screenshot();