MIT ライセンスの CLI + ブラウザ拡張。ファーストクラスの dsh プラグインがネイティブ browser_* ツールと Web UI オーバーレイを注入し、エージェントがログイン済みの実ブラウザを操作できる。
DSH 統合
互換
作者による申告
安全性監査
未監査
最終検証日
2026-08-21
ライセンス
MIT
01どんなタスクに使えるのか?
Automate web tasks in your real, logged-in browser from DeepSeek Harness
Browser actions executed through native browser_* tools inside dsh, running in a dedicated Agent Window and reusing existing signed-in sessions without separate test accounts
DeepSeek Harness (dsh) users who need their agent to search, read and operate websites they are already signed into
Open, read and summarize web pages from a dsh prompt (AI web search workflows)
Page content fetched through your real browser and summarized in the agent conversation, e.g. `/browser-skill open example.com and summarize what is on the page.`
Anyone building AI web search or research workflows inside DeepSeek Harness who wants results from a real browser instead of a headless sandbox
Get past captcha, login and confirmation steps without breaking automation
Agent pauses at human-only steps, hands the browser over to you, and continues the task afterwards
Teams automating browser flows in dsh that include captcha, login or confirmation dialogs
02DeepSeek Harness への導入方法
前提条件
- `bsk` CLI installed — macOS/Linux via the one-line install.sh script, Windows via install.ps1 in PowerShell (both install to `~/.local/bin`)
- BrowserSkill browser extension installed from the Chrome Web Store or Edge Add-ons (Chrome and Microsoft Edge supported)
インストール手順
- 01
Install the `bsk` CLI: `curl -fsSL https://raw.githubusercontent.com/Tencent/BrowserSkill/main/install.sh | sh` (macOS/Linux) or `irm https://raw.githubusercontent.com/Tencent/BrowserSkill/main/install.ps1 | iex` (Windows PowerShell)
$ curl -fsSL https://raw.githubusercontent.com/Tencent/BrowserSkill/main/install.sh | sh
- 02
Install the BrowserSkill extension from the Chrome Web Store or Edge Add-ons; on other Chromium-based browsers, install the Chrome Web Store build
- 03
Add the plugin to a dsh profile: `dsh plugin --profile web add @wxg-prc-cpg/browser-skill-dsh-plugin`
$ dsh plugin --profile web add @wxg-prc-cpg/browser-skill-dsh-plugin
- 04
Start that profile: `dsh --profile web` — the plugin carries its own copy of the skill, so `bsk install-skill` is not needed for dsh
$ dsh --profile web
導入成功の確認
- Run `bsk --version` to verify the CLI binary is installed
03DSH 統合と能力の範囲
First-class dsh plugin on npm (@wxg-prc-cpg/browser-skill-dsh-plugin) added to a dsh profile; injects native browser_* tools and a live Web UI overlay of each Agent Window
Native browser_* tools for dsh
a dsh profile with the plugin added via `dsh plugin`→injected browser_* tools (no shelling out to bsk) plus a live Web UI overlay of each Agent Window
The plugin invokes the local bsk CLI/daemon on your behalf to drive the browserReuse real login state
websites you are already signed into in your browser→the agent works with authenticated pages directly, without separate test accounts
If the agent needs a tab you already have open, it must borrow that tab explicitly and return it when the task is doneIsolated Agent Window execution
browser tasks issued by the agent→tasks run in a separate, visible Agent Window so you can keep using your own browser
Human-in-loop takeover
captcha, login, confirmation dialogs or other human-only steps→the agent asks you to take over and continues afterwards
04誰に向いているのか?使うべきでない場面は?
向いている用途
- DeepSeek Harness (dsh) users who need their agent to search, read and operate websites they are already signed into
- Anyone building AI web search or research workflows inside DeepSeek Harness who wants results from a real browser instead of a headless sandbox
- Teams automating browser flows in dsh that include captcha, login or confirmation dialogs
不向きな用途
- Only Chrome and Microsoft Edge are officially supported; other Chromium-based browsers are merely expected to work with unpacked extensions, and Firefox support is still planned.
- Even for DeepSeek Harness, the `bsk` CLI/daemon and the browser extension remain prerequisites — the dsh plugin alone is not sufficient to run.
05互換性・メンテナンス・セキュリティ上の注意
- Only Chrome and Microsoft Edge are officially supported; other Chromium-based browsers are merely expected to work with unpacked extensions, and Firefox support is still planned.
- Even for DeepSeek Harness, the `bsk` CLI/daemon and the browser extension remain prerequisites — the dsh plugin alone is not sufficient to run.
- The runtime covers macOS (Apple Silicon and Intel), Linux (x64 and ARM64) and Windows x64 only; other operating systems are not listed in the support matrix.
MIT · actively maintained (latest release dsh-plugin-v0.1.1, 2026-08-19)
06よくある質問
BrowserSkill は DeepSeek Harness にどう組み込む?プラグイン?MCP?
npm で配布されるファーストクラスの dsh プラグイン(@wxg-prc-cpg/browser-skill-dsh-plugin)です。`dsh plugin --profile web add @wxg-prc-cpg/browser-skill-dsh-plugin` でプロファイルに追加し、`dsh --profile web` で起動します。ネイティブの browser_* ツールが注入され(bsk のシェル呼び出しなし)、各 Agent Window のリアルタイム Web UI オーバーレイも利用できます。MCP は使いません。
dsh プラグインの導入前に何が必要?
dsh 利用の場合でも、`bsk` CLI/daemon と BrowserSkill ブラウザ拡張が引き続き前提条件です。プラグイン自体に skill のコピーが含まれるため `bsk install-skill` は不要ですが、CLI と拡張機能は先にインストールしておく必要があります。
対応ブラウザと OS は?
ブラウザは Chrome と Microsoft Edge に対応(unpacked 拡張に対応する他の Chromium ベースブラウザも動作が見込まれ、Firefox は計画中)。OS は macOS(Apple Silicon / Intel)、Linux(x64 / ARM64)、Windows x64 に対応します。
エージェントの操作は普段のブラウザ利用に影響する?
しません。ブラウザタスクは独立した可視の Agent Window で実行されるため、自分のブラウザはそのまま使えます。エージェントがすでに開いているタブを使う必要がある場合も、明示的にそのタブを借り受け、タスク完了後に返却し、他のウィンドウには触れません。
認証コードやログイン画面が出たらどうなる?
人間参加型(human-in-loop)の仕組みを内蔵しています。認証コード・ログイン・確認ダイアログなど人間しか進めない工程では、エージェントがあなたに引き継ぎを求め、完了後に処理を再開します。
07関連する DSH ワークフロー
openviking
by volcengine
AI エージェント向けの自己進化型コンテキストデータベース。メモリ、知識 RAG、スキルを統合
colleague-skill
by titanwings
コラボレーションツールの資料から仕事のスタイルを抽出し、同僚スキルとして蒸留する
archify
by tt-a1i
アーキテクチャ図、ワークフロー図、シーケンス図、データフロー図などを動きのある自己完結型 HTML として生成し、鮮明に書き出せるエージェントスキル
learn-harness-engineering
by walkinglabs
Harness エンジニアリング入門チュートリアル。ゼロから一歩ずつ学べる
08データと出典
BrowserSkill ships a first-class dsh plugin on npm as [`@wxg-prc-cpg/browser-skill-dsh-plugin`](https://www.npmjs.com/pa…
It injects native `browser_*` tools (no shelling out to `bsk`) and a live Web UI overlay of each Agent Window.
dsh plugin --profile web add @wxg-prc-cpg/browser-skill-dsh-plugin
このページは、プロジェクトの公開ドキュメント、リポジトリのメタデータ、および DSH Plugins の構造化解析に基づいて生成されています。最終検証日:2026-08-21。誤りを見つけた場合は、修正を送信してください。
