精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
Open DeepSeek Harness workspace directories in VS Code directly from the web GUI.
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
Open DeepSeek Harness workspace directories in VS Code directly from the web GUI.
待人工精选——以下事实来自源码仓库。
Open DeepSeek Harness workspace directories in VS Code directly from the web GUI.
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:omdsh-dev/dsh-open-in-vscode 类型判定: Installable DSH plugin that adds an 'Open in VSCode' menu item to the web GUI sidebar via documented 'dsh plugin add' command. · 模型判定 · 2026年8月18日
作者没有声明支持的平台。
sidebar.workspaces.row-menu slot when available and falls back to a scoped compatibility adapter on the public DSH 0.1.0-rc.6 build. Both paths render the same locale-following menu row — 在 VSCode 中打开 under the Chinese locale, Open in VSCode under English. - The row's click closes the menu and calls the host over the strict Typert Remote openInVscode/open, passing the workspace directory. - The host half spawns the configured editor CLI on that directory (code <path> by default), detached, so the editor outlives the server. ## Prerequisites - VS Code, or an editor CLI on PATH. On Windows, the default code command also discovers standard per-user and system VS Code installations. On macOS, install the VS Code shell command or set the plugin command to any editor that opens a directory). - DSH 0.1.0-rc.6 or newer. The plugin uses the native Workspace row-menu extension point where present and a compatibility adapter on rc.6. ## Install Add the plugin to your web profile (this runs pnpm inside the profile and reconciles the bundle layer): sh dsh plugin --profile web add https://github.com/omdsh-dev/dsh-open-in-vscode/archive/refs/tags/v0.1.6.tar.gz Restart the web server (kill -TERM <pid> and wait for exit — never kill -9, it tears the session zstd log mid-frame), then refresh the page. The host plugin mounts under dsh-open-in-vscode; the client bundle is served at /plugins/dsh-open-in-vscode/client.js. The versioned tarball replaces older pinned commits without running a git prepare script. Confirm the installed version with: sh dsh plugin --profile web list dsh-open-in-vscode --depth 0 ## Configuration Deployment-varying choices are validated Config fields, changeable from cordis.yml: | Key | Default | Meaning | | --- | --- | --- | | command | code | Executable that opens a directory. The default also probes standard Windows VS Code install locations; other commands resolve through PATH. | | args | [] | Extra arguments passed before the directory path. | A missing executable fails loud with a fix hint; relative paths are refused. ## Capability boundary | Action | Runs where | Requires approval | | --- | --- | --- | | Open a workspace directory in the editor | Host (user gesture) | No — the user clicked the row | | Anything else | — | The plugin has no tools, no settings namespace, and no model-facing surface | The plugin adds no tools, no skills, and no settings; it only opens the directory the user already opened in DSH. It never reads or writes files itself. ## Development sh pnpm install pnpm run check # typecheck + lint + test + build; commit lib/ (file: installs run without a build) Layout: the wire contract lives in one module (src/contract.ts) shared by the host manifest (src/typert.ts) and the client contribution (src/client/remote.ts); the harness owns the slot declaration and the Menu node-entry kind this plugin composes through. ## License MIT不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。