menotbobbybrown/dsh-plugin-browser ↗★ 0
dsh-plugin-browser
Native Headless & Visible Web Browser Automation Agent for DeepSeek Harness (dsh)
安装
此插件尚未提供可验证的 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();