menotbobbybrown/dsh-plugin-browser0

dsh-plugin-browser

Native Headless & Visible Web Browser Automation Agent for DeepSeek Harness (dsh)

包名
dsh-plugin-browser
版本
0.1.0
最近更新
2026年8月22日

安装

此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 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();