DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Import Vscode Ai Files — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
I

dsh-import-vscode-ai-files

Import Vscode Ai Files

Load a workspace's own VSCode/Copilot AI configuration (.github/copilot-instructions.md, .github/instructions, .github/skills) into every DeepSeek Harness session. DSH 加载 VSCode AI 配置插件。

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:NEVSTOP-LAB/dsh-import-vscode-ai-files#29182ad6ba30c7408627108879fd1c5b3092fe7e
READMECompatibilityVersions

Compatibility and provenance

Import Vscode Ai Files is published as dsh-import-vscode-ai-files and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/18/2026

Versions

0.1.0stable
9/18/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
Weekly downloads
0
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

DSH-Import-VSCode-AI-Files

DSH 插件:把一个工作区自带的 VSCode / Copilot 风格 AI 配置加载进每一个 DSH 会话。 同一份 .github 配置在 VSCode 和 DSH 里同时生效,不用维护两套。

[!NOTE] 插件只读取工作区里的配置,不写任何文件,也不改动 DSH 自身的设置。

功能

文件行为
.github/copilot-instructions.md常驻注入,等价 VSCode 的 repo-wide instructions
.github/instructions/**/*.instructions.md按 frontmatter applyTo 生效:没有 applyTo 的常驻;有 applyTo 的,只在本会话真的碰过匹配文件之后才注入
.github/skills/<name>/SKILL.md注册为 DSH 技能:name + description 进技能目录,正文按需加载

applyTo 的匹配规则与 VSCode 一致:相对该文件所属的项目根匹配(不是工作区根), 支持 **、*、?、{a,b}、[abc],逗号分隔多个模式。

SKILL.md 的 frontmatter 与 DSH 原生技能同义:

  • disable-model-invocation: true —— 不进技能目录(模型看不到,但用户仍可用 /name 调用)
  • user-invocable: false —— 不可被用户 /name 调用
  • 两个键省略即允许;拼写非法会让该技能被跳过并打一条警告

扫描范围

会话 cwd 本身,加上它下面 scanSubdirectories 层(默认 1 层)的直接子目录,各取自己的 .github/;.github/instructions/ 内部再递归(深度上限 4)。

这样 D:\NEVSTOP-LAB 这类「多 repo 工作文件夹」就成立:文件夹自身和它直接下面的每个 repo 都会贡献自己的 .github,互不干扰。不向上找祖先链,也不下探更深的层。

在会话里看到什么

GUI 的注入面板来源
指令注入 · import-vscode-ai-files本插件注入的 .github 指令(标题取自 source.plugin)
技能目录.github/skills 中 disable-model-invocation 不为 true 的技能

顺序固定为 AGENTS.md 在前,.github 指令在后。

内容变化时追加一条新的注入,而不是改写旧的;某个文件消失时会先给一条 Instructions removed: 说明,不会静默丢弃。

配置

插件行在 cordis.patch.yml,config 字段:

字段默认含义
maxBytes65536单次注入的字节预算;超出时先省略、再截断,并在正文里说明丢了多少
scanSubdirectories1cwd 下当作项目根的下探层数
instructionDirs['.github/instructions']*.instructions.md 所在目录
skillDirs['.github/skills']<name>/SKILL.md 所在目录

安装

需要 dsh CLI。

从 GitHub 仓库安装:

dsh plugin --profile desktop add github:NEVSTOP-LAB/dsh-import-vscode-ai-files

[!NOTE] --profile web 是默认 profile。桌面版(DSH Desktop)用 --profile desktop;其他 profile 换成对应名字即可。

建议锁定提交,避免后续更新改变实际内容:

dsh plugin --profile desktop add github:NEVSTOP-LAB/dsh-import-vscode-ai-files#<commit-sha>

也可以从 Releases 下载 tarball 安装:

dsh plugin --profile desktop add ./dsh-import-vscode-ai-files-0.1.0.tgz

安装后确认组合层里出现该插件:

dsh --profile desktop --dump-config

[!IMPORTANT] DSH 的 profile patch 层不热重载,安装后要重启 DSH。 装好之后改仓库里的 .github/** 是即时生效的(每个模型步骤重新读盘), 只有改插件自身源码才需要再重启。

卸载:

dsh plugin --profile desktop remove dsh-import-vscode-ai-files

License

MIT