vscode-copilot-bridge/README.md

6.2 KiB
Raw Blame History

Copilot Bridge (VS Code Extension)

Visual Studio Marketplace Version Visual Studio Marketplace Installs

A local interface for GitHub Copilot built on the official VS Code Language Models API.

Copilot Bridge lets you access your personal Copilot session locally through an OpenAI-compatible interface — without calling any private GitHub endpoints. Its designed for developers experimenting with AI agents, CLI tools, and custom integrations inside their own editor environment.


Key Features

  • Local HTTP server locked to 127.0.0.1
  • OpenAI-style /v1/chat/completions, /v1/models, and /health endpoints
  • SSE streaming for incremental responses
  • Real-time model discovery via VS Code Language Model API
  • Concurrency and rate limits to keep VS Code responsive
  • Optional bearer token authentication
  • Lightweight Polka-based server integrated directly with the VS Code runtime

⚖️ Compliance & Usage Notice

  • Uses only the public VS Code Language Models API.
  • Does not contact or emulate private GitHub Copilot endpoints.
  • Requires an active GitHub Copilot subscription.
  • Subject to GitHub Terms of Service and Copilot Product Terms.
  • Intended for personal, local experimentation only.
  • No affiliation with GitHub or Microsoft.

The author provides this project as a technical demonstration. Use responsibly and ensure your own compliance with applicable terms.


🚧 Scope and Limitations

Supported 🚫 Not Supported
Local, single-user loopback use Multi-user or shared deployments
Testing local agents or CLI integrations Continuous automation or CI/CD use
Educational / experimental use Public or commercial API hosting

🧠 Motivation

Copilot Bridge was built to demonstrate how VS Codes Language Model API can power local-first AI tooling.
It enables developers to reuse OpenAI-compatible SDKs and workflows while keeping all traffic on-device.

This is not a Copilot proxy, wrapper, or reverse-engineered client — its a bridge built entirely on the editors public extension surface.


⚠️ Disclaimer

This software is provided as is for research and educational purposes.
Use at your own risk.
You are solely responsible for ensuring compliance with your Copilot license and applicable terms.
The author collects no data and has no access to user prompts or completions.


🚀 Quick Start

Requirements

  • Visual Studio Code Desktop with GitHub Copilot signed in
  • (Optional) Node.js 18+ and npm for local builds

Installation

  1. Install from the Visual Studio Marketplace or load the .vsix.
  2. Launch VS Code and open the Command Palette → “Copilot Bridge: Enable”.
  3. Check status anytime with “Copilot Bridge: Status”.
  4. Keep VS Code open — the bridge runs only while the editor is active.

📡 Using the Bridge

Replace PORT with the one shown in “Copilot Bridge: Status”.

List models:

curl http://127.0.0.1:$PORT/v1/models

Stream a completion:

curl -N -H "Content-Type: application/json" \
  -d '{"model":"gpt-4o-copilot","messages":[{"role":"user","content":"hello"}]}' \
  http://127.0.0.1:$PORT/v1/chat/completions

Use with OpenAI SDK:

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: `http://127.0.0.1:${process.env.PORT}/v1`,
  apiKey: process.env.BRIDGE_TOKEN || "unused",
});

const rsp = await client.chat.completions.create({
  model: "gpt-4o-copilot",
  messages: [{ role: "user", content: "hello" }],
});

console.log(rsp.choices[0].message?.content);

🧩 Architecture

The extension uses VS Codes built-in Language Model API to select available Copilot chat models.
Requests are normalized and sent through VS Code itself, never directly to GitHub Copilot servers.
Responses stream back via SSE with concurrency controls for editor stability.


🔧 Configuration

Setting Default Description
bridge.enabled false Start automatically with VS Code
bridge.port 0 Ephemeral port
bridge.token "" Optional bearer token
bridge.historyWindow 3 Retained conversation turns
bridge.maxConcurrent 1 Max concurrent requests
bridge.verbose false Enable verbose logging

The bridge always binds to 127.0.0.1 and cannot be exposed to other interfaces.


🪶 Logging & Diagnostics

  1. Enable bridge.verbose.
  2. Open View → Output → “Copilot Bridge”.
  3. Observe connection events, health checks, and streaming traces.

🔒 Security

⚠️ This extension is intended for localhost use only.
Never expose the endpoint to external networks.

  • Loopback-only binding (non-configurable)
  • Optional bearer token enforcement
  • No persistent storage or telemetry

🧾 Changelog

  • v1.2.0 Locked the HTTP server to localhost for improved safety
  • v1.1.0 Performance improvements (~30%)
  • v1.0.0 Modular core, OpenAI typings, tool-calling support
  • v0.2.2 Polka integration, improved model family selection
  • v0.1.00.1.5 Initial releases and bug fixes

🤝 Contributing

Pull requests and discussions are welcome.
Please open an issue to report bugs or suggest features.


📄 License

Apache 2.0 © 2025 [Lars Baunwall]
Independent project — not affiliated with GitHub or Microsoft.
For compliance or takedown inquiries, please open a GitHub issue.