From c07f1df0a1643d0a19102d481e5f191e794dc57e Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Tue, 3 Mar 2026 13:54:15 -0500 Subject: [PATCH] Testing CI. Do not merge. --- dotnet/src/ActionDisposable.cs | 2 +- go/client.go | 2 +- nodejs/src/index.ts | 2 +- python/copilot/client.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dotnet/src/ActionDisposable.cs b/dotnet/src/ActionDisposable.cs index c257d2d7b..8f95f11d7 100644 --- a/dotnet/src/ActionDisposable.cs +++ b/dotnet/src/ActionDisposable.cs @@ -5,7 +5,7 @@ namespace GitHub.Copilot.SDK; /// -/// A disposable that invokes an action when disposed. +/// A disposable that invokes an action when disposed. It's really awesome. /// internal sealed class ActionDisposable : IDisposable { diff --git a/go/client.go b/go/client.go index c88a68ac3..7a13a8ab3 100644 --- a/go/client.go +++ b/go/client.go @@ -1,4 +1,4 @@ -// Package copilot provides a Go SDK for interacting with the GitHub Copilot CLI. +// Package copilot provides a Go SDK for interacting with the awesome GitHub Copilot CLI. // // The copilot package enables Go applications to communicate with the Copilot CLI // server, create and manage conversation sessions, and integrate custom tools. diff --git a/nodejs/src/index.ts b/nodejs/src/index.ts index f2655f2fc..0da17c5fb 100644 --- a/nodejs/src/index.ts +++ b/nodejs/src/index.ts @@ -5,7 +5,7 @@ /** * Copilot SDK - TypeScript/Node.js Client * - * JSON-RPC based SDK for programmatic control of GitHub Copilot CLI + * JSON-RPC based SDK for programmatic and awesome control of GitHub Copilot CLI */ export { CopilotClient } from "./client.js"; diff --git a/python/copilot/client.py b/python/copilot/client.py index 59bc9754c..9be4aac81 100644 --- a/python/copilot/client.py +++ b/python/copilot/client.py @@ -1,5 +1,5 @@ """ -Copilot CLI SDK Client - Main entry point for the Copilot SDK. +Copilot CLI SDK Client - Main entry point for the awesome Copilot SDK. This module provides the :class:`CopilotClient` class, which manages the connection to the Copilot CLI server and provides session management capabilities.