Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copilot SDK
# Copilot SDK

Welcome to the GitHub Copilot SDK docs. Whether you're building your first Copilot-powered app or deploying to production, you'll find what you need here.

Expand Down
6 changes: 3 additions & 3 deletions docs/auth/authenticate.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The GitHub Copilot SDK supports multiple authentication methods to fit different
| [GitHub Signed-in User](#github-signed-in-user) | Interactive apps where users sign in with GitHub | Yes |
| [OAuth GitHub App](#oauth-github-app) | Apps acting on behalf of users via OAuth | Yes |
| [Environment Variables](#environment-variables) | CI/CD, automation, server-to-server | Yes |
| [BYOK (Bring Your Own Key)](./byok.md) | Using your own API keys (Azure AI Foundry, OpenAI, etc.) | No |
| [BYOK (Bring Your Own Key)](./byok.md) | Using your own API keys (Azure AI Foundry, OpenAI, and more) | No |

## GitHub signed-in user

Expand Down Expand Up @@ -221,7 +221,7 @@ client.start().get();

**Supported token types:**
* `gho_` - OAuth user access tokens
* `ghu_` - GitHub App user access tokens
* `ghu_` - GitHub App user access tokens
* `github_pat_` - Fine-grained personal access tokens

**Not supported:**
Expand Down Expand Up @@ -275,7 +275,7 @@ await client.start()
</details>

**When to use:**
* CI/CD pipelines (GitHub Actions, Jenkins, etc.)
* CI/CD pipelines (GitHub Actions, Jenkins, and more)
* Automated testing
* Server-side applications with service accounts
* Development when you don't want to use interactive login
Expand Down
2 changes: 1 addition & 1 deletion docs/features/cloud-sessions.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ Capture the URL by subscribing to `session.info` and filtering by `infoType: "re
session.on("session.info", (event) => {
if (event.data?.infoType === "remote" && event.data.url) {
console.log("Open from web or mobile:", event.data.url);
// e.g. surface in your UI as a shareable link or QR code.
// For example, surface in your UI as a shareable link or QR code.
}
});
```
Expand Down
2 changes: 1 addition & 1 deletion docs/setup/choosing-a-setup-path.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Use this table to find the right guides based on what you need to do:
| Getting started quickly | [Default Setup (Bundled CLI)](./bundled-cli.md) |
| Use your own CLI binary or server | [Local CLI](./local-cli.md) |
| Users sign in with GitHub | [GitHub OAuth](./github-oauth.md) |
| Use your own model keys (OpenAI, Azure, etc.) | [BYOK](../auth/byok.md) |
| Use your own model keys (OpenAI, Azure, and more) | [BYOK](../auth/byok.md) |
| Azure BYOK with Managed Identity (no API keys) | [Azure Managed Identity](./azure-managed-identity.md) |
| Run the SDK on a server | [Backend Services](./backend-services.md) |
| Configure SDK options for concurrent users | [Multi-tenancy and server deployments](./multi-tenancy.md) |
Expand Down
4 changes: 2 additions & 2 deletions docs/troubleshooting/mcp-debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,10 +446,10 @@ When opening an issue or asking for help, collect:

* [ ] SDK language and version
* [ ] CLI version (`copilot --version`)
* [ ] MCP server type (Node.js, Python, .NET, Go, Rust, etc.)
* [ ] MCP server type (Node.js, Python, .NET, Go, Rust, and more)
* [ ] Full MCP server configuration (redact secrets)
* [ ] Result of manual `initialize` test
* [ ] Result of manual `tools/list` test
* [ ] Result of manual `tools/list` test
* [ ] Debug logs from SDK
* [ ] Any error messages

Expand Down