menotbobbybrown/dsh-plugin-browser0

dsh-plugin-browser

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

AI Analysis

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

Package
dsh-plugin-browser
Version
0.1.0
Last updated
Aug 22, 2026

Install

This plugin has no verified bundle, or compatibility checks failed. Read the repository notes first. 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();