DeepSeek Harness 插件

dsh-antigravity

Google Antigravity / Cloud Code Assist 模型提供商插件,支持配额查看与模型选择管理。

跳到安装方式

来源信息

GitHub 仓库
LiZhenNet/dsh-antigravity
最近更新
2026年8月20日
分类
模型与服务商
GitHub stars
0

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/LiZhenNet/dsh-antigravity
GitHub:https://github.com/LiZhenNet/dsh-antigravity
插件名:dsh-antigravity
作者:LiZhenNet
安装命令:dsh plugin --profile web add github:LiZhenNet/dsh-antigravity

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-antigravity

<p align="center"> <img src="./assets/images/chat-model-picker.png" alt="dsh-antigravity" width="100%" /> </p>

English | [简体中文](./README.zh.md)

Google Antigravity / Cloud Code Assist model provider for DeepSeek Harness.

This is a DSH Web plugin. It registers a DSH LlmAdapter under provider route antigravity, stores OAuth credentials under DSH home, talks to the Cloud Code Assist streaming API directly, and provides full bilingual (English & Simplified Chinese) i18n support in the Web settings page.

> Unofficial integration. This project is not affiliated with or endorsed by > Google. Use it only with accounts and services you are authorized to access.

Install into DSH Web

Option 1: Direct from GitHub

dsh plugin --profile web add github:LiZhenNet/dsh-antigravity

Option 2: From Local Release Tarball

npm run pack:dist
dsh plugin --profile web add ./dist/dsh-antigravity-0.0.4.tgz

The package declares a DSH bundle patch, so installation automatically mounts the host plugin and browser settings page.

If your DSH version does not support dsh plugin add, copy the package into the Web profile manually:

cp -R dsh-antigravity "$DSH_HOME/profiles/web/node_modules/"

Then add the plugin to the profile cordis.patch.yml:

- insert:
    - id: llm-antigravity
      name: dsh-antigravity

Restart DSH:

dsh web

Login

Open Settings > Antigravity and click Login. The settings page starts Google OAuth and refreshes quota after login completes.

![Antigravity Settings - Not Signed In](./assets/images/settings-not-signed-in.png)

After login, the settings page displays account information, quota grouped by model family, reset times, and model selector options:

  • Gemini Models — Gemini Flash / Pro variants share one quota pool (green bars).
  • Claude and GPT models — Claude Opus, Claude Sonnet, and GPT-OSS share a separate 3P quota pool (cyan bars).

Each group shows a 5-hour limit (smooths short-term demand) and a weekly limit (tied to your subscription tier) with a live countdown to reset.

![Antigravity Settings - Signed In with Quota](./assets/images/settings-signed-in.png)

The plugin starts a loopback OAuth callback server at http://localhost:51121/oauth-callback. If the Web service cannot open a browser, run the terminal helper on the same machine:

node "$DSH_HOME/profiles/web/node_modules/dsh-antigravity/bin/antigravity-login.mjs"

Credentials are stored at:

$DSH_HOME/storages/antigravity-oauth.json

Keep that file private. It contains access and refresh tokens.

Models

After login, select the Antigravity provider in DSH's model picker. Use the model selector in Settings > Antigravity to enable or disable individual models (enabled models are prioritized at the top of the list) — the live remaining quota percentage is shown next to each one.

Registered model IDs:

Model IDNameQuota pool
gemini-3.7-flashGemini 3.7 FlashGemini
gemini-3.6-flashGemini 3.6 FlashGemini
gemini-3.5-flashGemini 3.5 FlashGemini
gemini-3.1-proGemini 3.1 ProGemini
gemini-3.1-flash-imageGemini 3.1 Flash ImageGemini
gemini-3-flashGemini 3 FlashGemini
gemini-2.5-proGemini 2.5 ProGemini
gemini-2.5-flashGemini 2.5 FlashGemini
claude-opus-4-6Claude Opus 4.6Claude & GPT (3P)
claude-sonnet-4-6Claude Sonnet 4.6Claude & GPT (3P)
gpt-oss-120bGPT-OSS 120BClaude & GPT (3P)

Models in the same quota pool share a weekly limit and a 5-hour limit. Quota is consumed proportionally to token cost, so heavier models (e.g. Claude Opus) drain the pool faster than lighter ones.

The plugin resolves these public IDs to runtime model IDs using the live fetchAvailableModels catalog when available, with static routing fallbacks.

License

MIT