Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6f957d0
fix: improve blocked account verification flow and TUI UX
ndycode Feb 7, 2026
ddb05e8
fix(plugin): resolve review findings for account verification flow
ndycode Feb 7, 2026
2e8855a
fix: resolve review issues in verification and menu flows
ndycode Feb 7, 2026
9cd8102
fix: harden browser open and quota selection
ndycode Feb 7, 2026
d721a8e
fix: harden auth persistence and restore toast/config behavior
ndycode Feb 7, 2026
36259d5
fix(storage): validate v3 shape in unsafe account loader
ndycode Feb 7, 2026
ffee81e
docs: rename screenshot folder to pr-395
ndycode Feb 7, 2026
bacedad
fix(plugin): honor cli_first in header style and quota fallback
ndycode Feb 8, 2026
ee1e924
Fix cli_first header fallback and authuser URL handling
ndycode Feb 8, 2026
d94ea70
Add regression tests for enabled flag persistence
ndycode Feb 8, 2026
4caa12b
Merge origin/dev into pr-369 and resolve conflicts
ndycode Feb 8, 2026
f0e7b51
Harden blocked account file permissions
ndycode Feb 8, 2026
6c8c594
Preserve undefined family indices during storage clamping
ndycode Feb 8, 2026
efa77bc
chore: rerun checks
ndycode Feb 8, 2026
0177785
Fix Greptile findings for family sentinel and blocked storage lock
ndycode Feb 8, 2026
57fd7e0
Adjust delete menu result mode to avoid manage path ambiguity
ndycode Feb 8, 2026
e28a447
Deduplicate quota group types by importing from quota module
ndycode Feb 8, 2026
c585c4f
Align saved activeIndex with cursor and add sentinel tests
ndycode Feb 8, 2026
48a19ca
Fix verification scan status and restore menu repaint behavior
ndycode Feb 8, 2026
6d408f5
Normalize authuser to numeric index for Google verification links
ndycode Feb 8, 2026
c02b277
Correct subtitle line accounting in select viewport sizing
ndycode Feb 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ node_modules
out
dist
*.tgz
index.js
index.js.map
index.d.ts
index.d.ts.map
src/**/*.js
src/**/*.js.map
src/**/*.d.ts
src/**/*.d.ts.map
!src/shims.d.ts

# code coverage
coverage
Expand Down Expand Up @@ -40,6 +49,9 @@ antigravity-debug-*.log
# Test artifacts
test-file.ts

# Local scratch files
.tmp-origin-accounts.ts

# Local subrepos (not part of this project)
CLIProxyAPI/
LLM-API-Key-Proxy/
Expand Down
Binary file added docs/pr-395/pr1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/pr-395/pr2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/pr-395/pr3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/pr-395/pr4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/pr-395/pr5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/pr-395/pr6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/pr-395/pr7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
"description": "Google Antigravity IDE OAuth auth plugin for Opencode - access Gemini 3 Pro and Claude 4.5 using Google credentials",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"type": "module",
"license": "MIT",
"author": "noefabris",
Expand Down Expand Up @@ -64,4 +71,4 @@
"xdg-basedir": "^5.1.0",
"zod": "^4.0.0"
}
}
}
Loading