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.

Antigravity — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

dsh-antigravity

Antigravity

Google Antigravity / Cloud Code Assist model provider for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:WiseXin/dsh-antigravity#bb6c5e0939c0a3932a3b417826f0a0a9f1aa5afd
READMECompatibilityVersions

Compatibility and provenance

Antigravity is published as dsh-antigravity and currently resolves to version 0.0.4. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.0.4stable
9/9/2026

Related plugins

Loading related plugins…

Latest
0.0.4
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/10/2026
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 models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with the current session provider's today usage on the sidebar entryWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

dsh-antigravity

适用于 DeepSeek Harness(DSH)的 Google Antigravity / Cloud Code Assist 模型提供商插件。

本仓库是基于 LiZhenNet/dsh-antigravity(v0.0.4,commit 9495776)的兼容适配分支,仅对原代码做了最小改动,使其能在当前 DSH Desktop Beta 内置的 @deepseek-ai/dsh-llm 版本上正常加载。

非官方集成。本项目与 Google 无关,亦未获得 Google 认可。请仅在您有权访问的账号和服务中使用。

为什么需要这个分支

上游 dsh-antigravity@0.0.4 从 @deepseek-ai/dsh-llm 具名导入 CallId,而 DSH Desktop Beta 内置的 @deepseek-ai/dsh-llm@0.1.2-rc.1 没有导出 CallId(该版本中工具调用 id 的品牌函数名为 ToolCallId)。ESM 具名导入在链接期即校验导出是否存在,缺失会直接抛错并导致整棵插件树加载失败:

SyntaxError: The requested module '@deepseek-ai/dsh-llm' does not provide an export named 'CallId'
    at file:///C:/Users/.../.dsh/profiles/desktop/node_modules/dsh-antigravity/lib/index.js:15

详情见下方“改动内容”。上游若在后续版本改用 CallId 命名(npm 上较新的 dsh-llm alpha 版本已调整),此差异即可消除。

改动内容(与上游的差异)

与上游 commit 9495776 相比,本分支仅将 CallId 替换为语义等价的 ToolCallId,共 3 处,全部位于 lib/index.js:

  1. 具名导入:

     CONTEXT_WINDOW_EXCEEDED_CODE,
    -CallId,
     EMPTY_RESPONSE_CODE,
    +ToolCallId,
    
  2. 工具调用 block:

    -const block = { type: "tool-call", id: CallId(toolId), name: toolName, arguments: argsText };
    +const block = { type: "tool-call", id: ToolCallId(toolId), name: toolName, arguments: argsText };
    
  3. tool-call-delta:

    -        id: CallId(toolId),
    +        id: ToolCallId(toolId),
    

其余逻辑、模型列表、OAuth 流程、设置页 i18n 等均与上游保持一致。

使用方式

在 dsh 市场中搜索 / 安装

本仓库已在 GitHub 上公开并添加 dsh-plugin 等 topic,可被 DSH 的社区插件市场(如 dsh-marketplace,基于 GitHub topic:dsh-plugin 动态发现)收录。市场收录有最长约 10 分钟的目录缓存,之后在 设置 → 插件 → Marketplace 中搜索 Antigravity 即可找到。

也可以直接用命令行安装到指定 profile:

dsh plugin --profile desktop add github:WiseXin/dsh-antigravity
dsh plugin --profile web add github:WiseXin/dsh-antigravity

DSH Desktop(以 profile 依赖方式安装)

在 ~/.dsh/profiles/desktop/package.json 中将依赖指向本仓库:

"dependencies": {
  "dsh-antigravity": "github:WiseXin/dsh-antigravity"
}

重新安装依赖后完全退出并重启 DSH Desktop。

手动替换插件目录(临时覆盖)

将 lib/、bin/、assets/、cordis.patch.yml、package.json 等复制到:

~/.dsh/profiles/desktop/node_modules/dsh-antigravity/

完全退出(含托盘)并重启 DSH Desktop。

说明:DSH Desktop 内置的 dsh-llm 版本由应用安装包决定,profile 目录无法覆盖; 因此直接替换插件目录(而非其依赖)即可让本分支生效。任何一次插件重装 / pnpm install 都会恢复成依赖声明中的版本。

完整使用说明

插件的安装、Google OAuth 登录、模型与配额说明见:

  • 中文:README.zh.md
  • 英文:README.md(上游原始英文说明,本文件已替换为仓库说明,可查看上游仓库)

上游仓库:https://github.com/LiZhenNet/dsh-antigravity

许可证

MIT。上游版权归 dsh-antigravity contributors 所有;本分支保留原许可证与版权声明,仅做兼容性适配。