DeepSeek Harness plugin

dsh-open

A Codex-style workspace Open menu for DeepSeek Harness Web

Jump to install

Source facts

Repository
mattismegevand/dsh-open
Latest update
Aug 16, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/mattismegevand/dsh-open
Plugin: dsh-open
Author: mattismegevand

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

dsh-open

English | 中文

> A standalone DeepSeek Harness Web plugin that adds a compact split Open action to each conversation header, listing dock panels, the platform file manager, and your editors.

![MIT License](LICENSE) ![dsh-plugin](https://github.com/topics/dsh-plugin)

!Open menu in a Harness session header

What it does

  • The main icon opens the last selected available target.
  • The chevron lists registered dock panels, the platform file manager, and editors selected by $VISUAL and $EDITOR.
  • With one available target, the control collapses to one button.
  • Internal tools use ctx.dock.open(panelId) and appear only while their panel is registered.
  • Native actions are resolved on the Host. The browser sends only a session id and a closed action id; it cannot choose a filesystem path or executable.
  • Same-origin checks, bounded request bodies, environment scrubbing, and a launch timeout protect native invocation.

Install

Requires dsh-dock, the dsh CLI (Node.js 22.19+ or 24), and pnpm 10+.

From npm

dsh plugin --profile web add @mattismegevand/dsh-open

From GitHub

dsh plugin --profile web add github:mattismegevand/dsh-open

Git installs fetch sources, so pnpm runs the package's prepare build on first add. pnpm ≥10 refuses that until you allow it: copy the exact package key pnpm printed into the profile's pnpm-workspace.yaml allowBuilds entry, then re-run the same add.

Develop locally

git clone https://github.com/mattismegevand/dsh-open.git
cd dsh-open
corepack pnpm install
corepack pnpm check:all
dsh plugin --profile web add .

The shipped patch inserts the Host row automatically.

Configuration

- id: open
  name: '@mattismegevand/dsh-open'
  config:
    preferredAction: visual
    terminalPanelId: terminal
    maxRequestBytes: 8192
    launchTimeoutMs: 10000

The configured action is the initial preference for a fresh browser profile. Menu selection updates a browser-local preference. $VISUAL and $EDITOR are resolved on PATH and deduplicated. The file-manager action uses Finder on macOS, File Explorer on Windows, and the system opener on Linux.

Related plugins

  • dsh-dock — the docking system that registers the internal panel targets.
  • dsh-terminal — VS Code-style Ghostty terminal panel.
  • dsh-git — session-scoped working-tree Review panel.

Model experience

Workspace Open UI

#### What the model sees

Nothing. The plugin launches UI panels or native applications from a human-operated browser control and registers no prompt, tool schema, or model-visible message.

#### Token effect

Zero tokens are added to model requests or responses.

#### KV Cache effect

None. Selecting or launching an Open target does not alter the model input prefix.

Known limitations

  • Native capability discovery runs when the client store loads and is not refreshed while that store remains mounted.
  • Native launch failures are surfaced as concise errors; platform-specific recovery actions such as revealing Finder permission settings are not implemented.
  • Internal targets depend on live dock registrations, and native targets remain local-host only.

License

MIT