Add an AI agent to your Python app that can plan and execute multi-step coding tasks using GitHub Copilot's engine.
Build a Node.js tool that calls Copilot to make file edits programmatically from high-level plain-English instructions.
Use a bring-your-own-key setup with an Anthropic or OpenAI API key so you don't need a GitHub Copilot subscription.
| github/copilot-sdk | morganamilo/paru | reacherhq/check-if-email-exists | |
|---|---|---|---|
| Stars | 8,659 | 8,700 | 8,700 |
| Language | Rust | Rust | Rust |
| Setup difficulty | moderate | hard | moderate |
| Complexity | 3/5 | 2/5 | 3/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires a GitHub Copilot subscription or your own API key from OpenAI, Anthropic, or Azure.
The GitHub Copilot SDK is a set of libraries that lets developers embed GitHub Copilot's AI agent capabilities directly into their own applications. Rather than building a custom AI agent from scratch, you use this SDK to hook into the same planning and execution engine that powers the Copilot CLI tool, and call it programmatically from your code. The SDK is available for Python, Node.js and TypeScript, Go.NET, Java, and Rust (in technical preview). Each language has its own package installable through the standard package manager for that language, such as pip for Python or npm for Node.js. All of the SDK packages communicate with a Copilot CLI server process running locally, using a JSON-RPC protocol. The SDK handles starting and managing that process automatically for most languages. With the SDK, your application can describe agent behavior and then let Copilot handle the details of planning steps, invoking tools, making file edits, and so on. You define what the agent should do at a high level, the SDK and the underlying engine work out how to do it. Using the SDK requires a GitHub Copilot subscription for standard usage. There is also a bring-your-own-key option that lets you supply API keys from providers like OpenAI, Anthropic, or Azure instead of using GitHub authentication. Authentication can be handled through stored GitHub credentials, OAuth tokens, environment variables, or the bring-your-own-key path. The repository contains subdirectories for each language SDK, plus documentation for getting started, authentication setup, and connecting to an external CLI server if needed.
An official GitHub SDK that lets you embed Copilot's AI agent, planning, tool use, and file editing, directly into your own Python, Node.js, Go.NET, Java, or Rust application without building an agent engine from scratch.
Mainly Rust. The stack also includes Python, TypeScript, Go.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.