HTTP bridge that exposes VS Code + GitHub Copilot Chat to external Python scripts and agents
Project description
Copilot Bridge
A local HTTP bridge that exposes VS Code and GitHub Copilot Chat to any external process — Python scripts, agents, CLIs, or other tools.
External process
↕ HTTP (localhost:5150)
copilot-bridge-extension ← VS Code extension (the server)
↕ VS Code API
GitHub Copilot Chat
Components
| Path | Purpose |
|---|---|
copilot-bridge-extension/ |
VS Code extension — starts the HTTP server inside VS Code |
copilot-bridge-dist/ |
Python client library (CopilotBridge, CopilotAgent) |
Quickstart
1 — Install the VS Code extension
From GitHub Releases (no build required):
- Download
copilot-bridge.vsixfrom the latest release - In VS Code:
Ctrl+Shift+P→ "Extensions: Install from VSIX..." → select the file
From source:
cd copilot-bridge-extension
npm install
npm run package # produces copilot-bridge-x.x.x.vsix
code --install-extension copilot-bridge-*.vsix
The extension auto-starts an HTTP server on localhost:5150 when VS Code opens.
2 — Install the Python client
pip install copilot-bridge
From source:
cd copilot-bridge-dist
pip install .
3 — Use it
from copilot_bridge import CopilotBridge, CopilotAgent
# One-shot question
client = CopilotBridge()
print(client.ask("Explain this function in one sentence"))
# Stateful chat
client.set_system_prompt("You are a terse code reviewer.")
reply = client.chat("Review my PR diff")
# Agentic loop — reads/writes files, runs commands, etc.
agent = CopilotAgent()
agent.run("Refactor src/auth.py to use async/await")
CLI:
python -m copilot_bridge # interactive chat
python -m copilot_bridge agent # interactive agent
python -m copilot_bridge ask "Hello" # one-shot
python -m copilot_bridge status # connection check
API overview
CopilotBridge exposes the full VS Code surface over HTTP:
| Category | Methods |
|---|---|
| Chat | ask, chat, chat_stream, chat_with_image |
| Files | read_file, write_file, edit_file, multi_edit, delete_file, rename_file, copy_file, list_directory |
| Search | search_text, search_files, find_files, semantic_search |
| Code intelligence | search_symbols, find_definition, find_usages, hover, document_symbols, rename_symbol, call_hierarchy |
| Git | git_status, git_diff, git_log, git_branches, git_add, git_commit, git_push, git_pull, git_merge, git_checkout, git_stash |
| Diagnostics | get_diagnostics, get_errors |
| Editor | get_editor, open_file, insert_text, get_selection |
| Terminal | create_terminal, send_to_terminal, get_terminal_output, dispose_terminal |
| UI | notify_info, notify_warn, notify_error, prompt_input, prompt_quickpick |
| Workspace | get_workspace, get_workspace_index, get_workspace_files, get_related_files, get_import_graph, reindex |
See copilot-bridge-dist/copilot_bridge.pyi for the full typed interface.
Authentication
The bridge uses an API key to protect all endpoints. The key is generated automatically the first time the VS Code extension starts.
Key location: ~/.copilot-bridge/config.json
{ "apiKey": "a3f8c2d19e4b7a6f..." }
The Python client reads this file automatically — no extra setup needed:
client = CopilotBridge() # key loaded from ~/.copilot-bridge/config.json
To use a custom key (e.g. in CI or a container):
client = CopilotBridge(api_key="your-key-here")
Or set it via environment variable in your own wrapper:
import os
client = CopilotBridge(api_key=os.environ["COPILOT_BRIDGE_KEY"])
To rotate the key: delete ~/.copilot-bridge/config.json and restart VS Code. A new key is generated automatically.
Note:
/healthis intentionally unauthenticated so the client can auto-discover the port.
Configuration
In VS Code settings (Ctrl+,, search "Copilot Bridge"):
| Setting | Default | Description |
|---|---|---|
copilotBridge.port |
5150 |
HTTP server port (auto-increments if busy) |
copilotBridge.autoStart |
true |
Start server when VS Code opens |
Security & Privacy
- Localhost only — the HTTP server binds exclusively to
127.0.0.1and is never exposed to the network or the internet. - API key protected — every endpoint (except
/health) requires a bearer token stored in~/.copilot-bridge/config.json. No unauthenticated request reaches Copilot Chat. - No telemetry — the extension and Python client collect no usage data and make no outbound connections of their own.
- No data leaves your machine — all traffic stays between your local processes. Copilot Chat itself operates under your existing GitHub Copilot subscription and its own privacy terms.
- Thin bridge, not an agent runtime — this project is a dumb pipe. It does not store conversation history, cache credentials, or manage secrets beyond the single API key file.
Requirements
- VS Code 1.90+
- GitHub Copilot Chat extension
- Python ≥ 3.10 (client library)
- Node.js ≥ 18 (to build the extension from source)
License
MIT — see copilot-bridge-extension/LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file copilot_bridge-5.2.0.tar.gz.
File metadata
- Download URL: copilot_bridge-5.2.0.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0b2bfb38008a4fea4f925ffedfd8f672d88c3b4fdc708d118b3443cc8307dd2
|
|
| MD5 |
d60419d7b4646e94daabe403bd0b95ac
|
|
| BLAKE2b-256 |
933bee705815509d638d22d25ae0b24e7aee767f83781232a41bcb9fb20127cc
|
Provenance
The following attestation bundles were made for copilot_bridge-5.2.0.tar.gz:
Publisher:
release.yml on rakshithbn-proj/copilot-bridge
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
copilot_bridge-5.2.0.tar.gz -
Subject digest:
c0b2bfb38008a4fea4f925ffedfd8f672d88c3b4fdc708d118b3443cc8307dd2 - Sigstore transparency entry: 1886084664
- Sigstore integration time:
-
Permalink:
rakshithbn-proj/copilot-bridge@0d62472f933abfe8d4505d4577840e70dfc1233b -
Branch / Tag:
refs/tags/v5.2.0 - Owner: https://github.com/rakshithbn-proj
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0d62472f933abfe8d4505d4577840e70dfc1233b -
Trigger Event:
push
-
Statement type:
File details
Details for the file copilot_bridge-5.2.0-py3-none-any.whl.
File metadata
- Download URL: copilot_bridge-5.2.0-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b8f1a64f5a40a87bfae7e144a35458fe53dfd052c399bb95ca8b8df9a204880
|
|
| MD5 |
e47fe10d7d777bac7552c12a934385a4
|
|
| BLAKE2b-256 |
858e7c40f61fbec3e00e4d751b6f1d9ceff5eb467b82f0f279a619540ba506b3
|
Provenance
The following attestation bundles were made for copilot_bridge-5.2.0-py3-none-any.whl:
Publisher:
release.yml on rakshithbn-proj/copilot-bridge
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
copilot_bridge-5.2.0-py3-none-any.whl -
Subject digest:
9b8f1a64f5a40a87bfae7e144a35458fe53dfd052c399bb95ca8b8df9a204880 - Sigstore transparency entry: 1886084745
- Sigstore integration time:
-
Permalink:
rakshithbn-proj/copilot-bridge@0d62472f933abfe8d4505d4577840e70dfc1233b -
Branch / Tag:
refs/tags/v5.2.0 - Owner: https://github.com/rakshithbn-proj
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0d62472f933abfe8d4505d4577840e70dfc1233b -
Trigger Event:
push
-
Statement type: