docs(antigravity): warn that Antigravity's terms prohibit third-party clients - #457
Conversation
… clients Clause 6 of https://antigravity.google/terms prohibits "using third party software, tools, or services to access the Service", and a breach "may be grounds for suspension or termination of your Antigravity and/or Gemini CLI accounts". shunt's `antigravity` provider is exactly such third-party software, so operators should read the terms and decide for themselves. Adds a paragraph after the existing "your own call" disclaimer in the README (en/ko/ja/zh-CN) and an "Antigravity's terms" caution aside to the site provider page and providers guide in all four locales.
There was a problem hiding this comment.
Code Review
This pull request updates the documentation across multiple languages (English, Japanese, Korean, and Chinese) to include a prominent warning regarding Google's Antigravity terms of service. It explicitly cautions users that accessing the service via third-party software using Antigravity OAuth (such as shunt or OpenClaw) violates their terms and may result in account suspension or termination. As there are no review comments provided, there is no feedback to evaluate.
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Greptile SummaryAdds prominent warnings across the English, Korean, Japanese, and Simplified Chinese documentation that Antigravity’s terms prohibit third-party clients and identify possible account consequences.
Confidence Score: 5/5The documentation-only PR appears safe to merge. The warning is consistently added across the maintained locales and relevant documentation surfaces without introducing a concrete correctness, rendering, or policy-scope defect.
|
| Filename | Overview |
|---|---|
| README.md | Adds the English Antigravity terms warning near the existing third-party-client disclaimer. |
| site/src/content/docs/providers/antigravity.mdx | Adds a caution about the terms before the provider’s quick-start instructions. |
| site/src/content/docs/guides/providers.mdx | Adds the same caution to the English Antigravity section of the provider guide. |
| README.ja.md | Adds a localized Japanese version of the warning. |
| README.ko.md | Adds a localized Korean version of the warning. |
| README.zh-CN.md | Adds a localized Simplified Chinese version of the warning. |
| site/src/content/docs/ja/providers/antigravity.mdx | Adds the localized warning before the Japanese quick-start section. |
| site/src/content/docs/ko/providers/antigravity.mdx | Adds the localized warning before the Korean quick-start section. |
| site/src/content/docs/zh-cn/providers/antigravity.mdx | Adds the localized warning before the Simplified Chinese quick-start section. |
Reviews (1): Last reviewed commit: "docs(antigravity): warn that Antigravity..." | Re-trigger Greptile
There was a problem hiding this comment.
No issues found across 12 files
Architecture diagram
sequenceDiagram
participant Reader as Docs Reader
participant README as README (all locales)
participant Site as Docs Site (antigravity.mdx, providers.mdx)
participant Shunt as shunt CLI
participant Antigravity as Google Antigravity
Note over Reader,Antigravity: Documentation warning flow for Antigravity provider
Reader->>README: Reads provider disclaimer section
README-->>Reader: NEW: Bold warning (Antigravity terms clause 6 quoted verbatim)
Note over README: States third-party access via OAuth is a breach, may cause suspension/termination of Antigravity/Gemini CLI accounts
Reader->>Site: Opens Antigravity provider page
Site-->>Reader: NEW: Caution aside before "Quick start" section
Note over Site: Warning placed before login steps so reader sees it first
alt Reader also views providers guide
Reader->>Site: Opens providers guide
Site-->>Reader: NEW: Same caution aside at end of Antigravity section
end
alt Reader proceeds with setup
Reader->>Shunt: Runs `shunt login antigravity`
Shunt->>Antigravity: OAuth authentication flow
Antigravity-->>Shunt: Auth tokens (access/refresh)
Note over Shunt,Antigravity: Potential breach of Antigravity terms clause 6 (third-party client)
Shunt-->>Reader: Login complete, routing available
else Reader decides against
Reader->>Reader: Weighs risk of account suspension/termination
Note over Reader: No shunt login performed
end



Summary
Google's Antigravity terms clause 6 states that "using third party software, tools, or services to access the Service (e.g. using OpenClaw with Antigravity OAuth) is a breach of this Agreement", and that such a breach "may be grounds for suspension or termination of your Antigravity and/or Gemini CLI accounts". shunt's
antigravityprovider is third-party software using Antigravity OAuth, so it falls squarely under that clause.Until now the repo carried only the generic "your own call" disclaimer that covers Codex, Grok, Kimi, and Cursor. Antigravity is the one backend whose terms name this use explicitly, so it warrants a warning the reader sees before running
shunt login antigravity— not a paragraph buried after setup.The docs quote the clause as written rather than paraphrasing or overstating it. In particular, the clause names Antigravity and/or Gemini CLI accounts, not the whole Google account, and the wording added here keeps that scope.
Changes
README.md,README.ko.md,README.ja.md,README.zh-CN.md— a bold paragraph directly after the existing "your own call" disclaimer, quoting the clause verbatim and telling the reader to decide before runningshunt login antigravity.site/src/content/docs/{,ko/,ja/,zh-cn/}providers/antigravity.mdx— an<Aside type="caution" title="Antigravity's terms">placed before "Quick start", so it is read before login.site/src/content/docs/{,ko/,ja/,zh-cn/}guides/providers.mdx— the same aside at the end of the Antigravity section, mirroring the Cursor section's existing "Your own call" caution.12 files, 94 insertions, no code. All four locales are updated in the same PR per AGENTS.md;
wiki/is generated and was not touched.Milestone / spec
None — documentation only; no implementation behavior changes.
Checklist
cargo buildpasses — N/A, no Rust changedcargo testpasses (new behavior is covered; tests run without network/loopback where possible) — N/A, no Rust changedcargo clippy --all-targets -- -D warningsclean — N/A, no Rust changedcargo fmt --all --checkclean — N/A, no Rust changeddocs/updated if this change deviates from it — no deviation;docs/untouchedREADME.md(+3 locales) andsite/(8 pages);wiki/left aloneNotes for reviewers
npm ci && npm run buildinsite/succeeded: 153 pages built, and the terms link renders in the built HTML for every affected page. Worth stating explicitly because no workflow buildssite/on a pull request — the docs site is only built on push tomain, so CI will not produce this evidence for you.Summary by cubic
Adds a warning that Google's Antigravity terms explicitly prohibit third-party clients like shunt's
antigravityprovider, with suspension or termination of Antigravity and/or Gemini CLI accounts as a possible consequence. Previously the docs carried only the generic "your own call" disclaimer.shunt login antigravitysteps so readers see it before acting.Written for commit 1daa2cb. Summary will update on new commits.