forked from router-for-me/CLIProxyAPI
-
-
Notifications
You must be signed in to change notification settings - Fork 487
fix: complete GitHub Copilot TUI & auth-files support #503
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
Closed
conversun
wants to merge
23
commits into
router-for-me:main
from
conversun:fix/github-copilot-tui-support
Closed
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
69b950d
fix(executor): fix OAuth extra usage detection by Anthropic API
wykk-12138 613fe67
fix(executor): inject full Claude Code system prompt blocks with prop…
wykk-12138 f6f4640
fix: use sjson to build system blocks, avoid raw newlines in JSON
wykk-12138 8783caf
fix: buildTextBlock cache_control sjson path issue
wykk-12138 9e0ab4d
fix: build cache_control JSON manually to avoid sjson map marshaling
wykk-12138 e2e3c7d
fix: remove invalid org scope and match Claude Code block layout
wykk-12138 7cdf8e9
fix(claude): sanitize forwarded third-party prompts for OAuth cloaking
wykk-12138 f0c20e8
fix(claude): remove invalid cache_control scope from static system block
wykk-12138 7e8e222
fix(claude): reduce forwarded OAuth prompt to minimal tool reminder
wykk-12138 e8d1b79
fix(claude): remap OAuth tool names to Claude Code style to avoid thi…
wykk-12138 cf24958
feat(antigravity): configurable signature cache with bypass-mode vali…
sususu98 38f0ae5
docs(antigravity): document signature validation spec alignment
sususu98 30e94b6
fix(antigravity): refine 429 handling and credits fallback
ZTXBOSS666 39dc455
Merge pull request #2412 from sususu98/feat/signature-cache-toggle
luispater ac36119
fix(claude): preserve OAuth tool renames when filtering tools
wykk-12138 f780c28
fix(claude): map question/skill to TitleCase instead of removing them
wykk-12138 96056d0
Merge remote-tracking branch 'upstream/main' into fix/oauth-extra-usa…
wykk-12138 0f45d89
fix(claude): address PR review feedback for OAuth cloaking
wykk-12138 f32c8c9
fix(handlers): update listener to bind on all interfaces instead of l…
luispater b2c0cdf
Merge pull request #2621 from wykk-12138/fix/oauth-extra-usage-detection
luispater 7df6d47
Merge remote-tracking branch 'upstream/main'
conversun 5d452d0
fix: complete GitHub Copilot TUI support
conversun d15fb01
fix: clear stale OAuth session state on flow reset
conversun 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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing the listening address from
127.0.0.1to0.0.0.0exposes the OAuth callback forwarder to the entire network. This is a security risk, especially if the proxy is running on a machine with a public IP or in an untrusted network. Unless there is a specific requirement for remote access to this temporary port, it should remain bound to the loopback interface.