-
Notifications
You must be signed in to change notification settings - Fork 1
feat(providers): Antigravity + Gemini CLI OAuth plugins #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
phantomic12
wants to merge
40
commits into
catalystctl:master
Choose a base branch
from
phantomic12:feat/gemini-cli-antigravity-oauth
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
038f5c8
feat(providers): add Antigravity + Gemini CLI OAuth plugins
phantomic12 8ec5ceb
feat(antigravity): allow CATALYST_CODE_ANTIGRAVITY_PROJECT override
phantomic12 a9047f1
fix(providers): gemini-cli works without x-goog-user-project
phantomic12 e79ebbe
style: rustfmt staging.rs test blocks for new providers
phantomic12 18b7e92
fix(providers): address review — missing constant, redirect path, env…
phantomic12 7945198
refactor(providers): extract shared OAuth helpers into _shared/google…
40b93d4
docs(plugins): document redirect_path, env_passthrough, header gotchas
catcode 4e894ec
test(core): integration test for OAuth plugin lifecycle + redirect_path
catcode 71266cb
test(providers): add e2e OAuth tests for antigravity (mock HTTP)
catcode 9eeacf5
test(providers): add e2e OAuth tests for gemini-cli (mock HTTP)
catcode b14516a
style: pick up upstream format + protocol drift
phantomic12 8bf9d67
fix: sync Go fixture + web reducer for new advisor events
phantomic12 352a7f5
ci: build SDK before web typecheck/test
phantomic12 73b756d
ci: move web install after SDK build
phantomic12 6e4181d
fix(web): add advisor_note + advisor_status to web's CoreEvent type
phantomic12 84b6f69
fix(providers): address review feedback (docs, tests, hardening)
phantomic12 bf31d3d
fix(providers): retire CATALYST_CODE_OAUTH_DIR test story and align C…
pullfrog[bot] a41ac49
feat(providers): add Antigravity + Gemini CLI OAuth plugins
phantomic12 27b8440
feat(antigravity): allow CATALYST_CODE_ANTIGRAVITY_PROJECT override
phantomic12 d013dac
fix(providers): gemini-cli works without x-goog-user-project
phantomic12 5588c56
style: rustfmt staging.rs test blocks for new providers
phantomic12 720fa19
fix(providers): address review — missing constant, redirect path, env…
phantomic12 7b88199
refactor(providers): extract shared OAuth helpers into _shared/google…
f149ad5
docs(plugins): document redirect_path, env_passthrough, header gotchas
catcode 110c3e4
test(core): integration test for OAuth plugin lifecycle + redirect_path
catcode 16a1a35
test(providers): add e2e OAuth tests for antigravity (mock HTTP)
catcode 257db0a
test(providers): add e2e OAuth tests for gemini-cli (mock HTTP)
catcode 0cf2abc
style: pick up upstream format + protocol drift
phantomic12 a8a2889
fix: sync Go fixture + web reducer for new advisor events
phantomic12 3391d12
ci: build SDK before web typecheck/test
phantomic12 c8c9d16
ci: move web install after SDK build
phantomic12 7460bb8
fix(web): add advisor_note + advisor_status to web's CoreEvent type
phantomic12 6d0a694
fix(providers): address review feedback (docs, tests, hardening)
phantomic12 40706f2
chore: align with upstream master after skills marketplace rebase
phantomic12 8abf9e1
merge: incorporate pullfrog auto-fix bf31d3d (drop CATALYST_CODE_OAUT…
phantomic12 937bca7
build: add --no-web flag and auto-detect for WebKitGTK deps
52c0387
ci: add workflow for Python OAuth tests
91211be
docs(gemini-cli): narrow advertised model list to free-tier-verified …
b9b5ef9
fix(build): platform-aware web auto-detect; align gemini-cli wire sample
pullfrog[bot] c42d38d
merge(master): catch up + resolve open PR #7 review threads
phantomic12 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| name: OAuth Python Tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main, master] | ||
| pull_request: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| # Mirror CI's concurrency strategy: a newer commit makes an in-flight run for | ||
| # the same branch obsolete, so reviewers don't wait on a stale build. | ||
| concurrency: | ||
| group: oauth-py-${{ github.event.pull_request.number || github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| python-oauth: | ||
| name: python oauth (unittest) | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.12' | ||
| # The OAuth helper modules under core/providers/{antigravity,gemini-cli}/oauth/ | ||
| # are stdlib-only (urllib, json, http.server, ssl) and import cleanly on | ||
| # a fresh Python — no extra apt or pip install needed. | ||
| - name: run OAuth unittest suite | ||
| run: python3 -m unittest discover -s core/providers -p 'test_*_oauth.py' -v |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.