cnskycn
reveal-file
Right-click a produced file in DeepSeek Harness Web chat to open its location in the OS file manager
- Stars
- 0
- Language
- JavaScript
- Created
- Aug 16, 2026
- Updated
- Aug 16, 2026
Introduction
reveal-file
Right-click a produced file in DeepSeek Harness (dsh) Web chat and open its location in your OS file manager — with the file selected.
Features
- Right-click menu — "打开所在目录" appears on produced-file rows in chat
- Cross-platform —
explorer.exe /select,(Windows),open -R(macOS),xdg-open(Linux) - Feedback toast — success / failure notification in the corner
- Lightweight — pure DOM context menu, no framework, one REST endpoint
Requirements
- DeepSeek Harness (
@deepseek-ai/dsh) with the web profile @deepseek-ai/cordis(bundled with dsh)
Installation
pnpm dsh plugin --profile web add reveal-file
pnpm dsh --profile web
Or add it to your profile's cordis.patch.yml:
- insert:
- id: reveal-file
name: 'reveal-file'
Usage
In a chat message, right-click any produced file row (the files the model wrote to disk). A small menu appears with 📂 打开所在目录. Click it — the file manager opens with the file selected.
How it works
Dual-face plugin:
- Host half (
lib/index.js) — registers a REST endpoint/api/reveal-file/revealon the dsh web server. It resolves the path through thefsservice, then spawns the platform's reveal command via thesubprocessservice. - Client half (
lib/client.js) — listens forcontextmenuevents on produced-file rows and calls the endpoint withfetch().
Note: the host half uses the host
webServerservice. This is the correct pattern for a static host plugin — the dynamic-runner sandbox has noharnessglobal.
License
MIT