menotbobbybrown/dsh-plugin-browser ↗★ 0
dsh-plugin-browser
Native Headless & Visible Web Browser Automation Agent for DeepSeek Harness (dsh)
AI Analysis
核心用途是提供网页浏览器自动化能力。适合需要让 Agent 自动导航网页、提取干净的 Markdown 内容以及捕获网页截图的任务。
Install
This plugin has no verified bundle, or compatibility checks failed. Read the repository notes first. Read the full README ↗
README
Read the full 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();