DeepSeek Harness plugin

douyin-plugin-dsh-plugin

DSH plugin: the /douyin command opens the Douyin web app in the default browser

Jump to install

Source facts

Repository
chu557/douyin-plugin-dsh-plugin
Latest update
Aug 14, 2026
Category
Just for Fun
GitHub stars
4
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/chu557/douyin-plugin-dsh-plugin
Plugin: douyin-plugin-dsh-plugin
Author: chu557

Check the source files

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

File explorer3 files
README.mdSource · read only

dsh-command-douyin

DSH 插件:注册 /douyin 命令,在默认浏览器中打开网页版抖音(<https://www.douyin.com/?recommend=1>)。

在任意会话输入框输入 /douyin 并回车(或在 / 菜单中选择),命令直接执行、无需模型回合,浏览器会自动打开抖音网页版。

工作原理

  • 宿主端命令插件:通过 ctx.commands@deepseek-ai/dsh-commands)注册全局命令,Web 客户端的 / 菜单自动发现。
  • 打开浏览器使用 @deepseek-ai/dsh-native-commandrunNativeCommand(无 shell 的 execFile):

- Windows:rundll32 url.dll,FileProtocolHandler <url> - macOS:open <url> - Linux:xdg-open <url>

  • 无参数;带参数返回 Usage: /douyin (no arguments)

安装(web profile)

1. 把本插件包以真实目录复制到共享 node_modules(Node ESM 会按真实路径解析依赖,junction/符号链接会导致 @deepseek-ai/dsh-native-command 解析失败):

``powershell Copy-Item -Recurse -Force "<本目录>" "$env:DSH_HOME\profiles\node_modules\dsh-command-douyin" ``

2. 在 $env:DSH_HOME\profiles\web\cordis.patch.yml 中加入:

``yaml - insert: - id: command-douyin name: 'dsh-command-douyin' ``

3. 重启 dsh web(补丁层在启动时合成;运行中的实例不会热挂载新 bundle/补丁行)。

4. 验证:

``sh dsh --profile web --dump-config # 树中应出现 id: command-douyin 一行 ``

启动后在输入框输入 /douyin 并回车即可。

备选:正式 bundle 安装(需要 pnpm 可用,且同样需重启)

dsh plugin --profile web add link:<本目录的绝对路径>

该命令会在 profile 的 package.json 中登记依赖并把 dsh-command-douyin 追加进 dsh.profile.bundles。注意:link: 依赖经 pnpm 安装为链接形式,同样存在 ESM 按真实路径解析的问题;如遇加载失败,改用上面的真实目录复制方式。