menotbobbybrown/dsh-plugin-browser0

dsh-plugin-browser

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

AI 分析

核心用途是提供网页浏览器自动化能力。适合需要让 Agent 自动导航网页、提取干净的 Markdown 内容以及捕获网页截图的任务。

パッケージ
dsh-plugin-browser
バージョン
0.1.0
最終更新
2026/08/22

インストール

検証済み 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();