chore: publish from staged

This commit is contained in:
github-actions[bot]
2026-06-17 04:13:47 +00:00
parent 14203cf09f
commit 1f5e743f4d
14 changed files with 65 additions and 36 deletions
@@ -1,6 +1,7 @@
#:package GitHub.Copilot.SDK@*
using GitHub.Copilot.SDK;
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
using GitHub.Copilot;
// Create and start client
await using var client = new CopilotClient();
@@ -33,12 +34,11 @@ await using var session = await client.CreateSessionAsync(new SessionConfig
Model = "claude-opus-4.6",
Streaming = true,
OnPermissionRequest = PermissionHandler.ApproveAll,
McpServers = new Dictionary<string, object>()
McpServers = new Dictionary<string, McpServerConfig>()
{
["playwright"] =
new McpLocalServerConfig
new McpStdioServerConfig
{
Type = "local",
Command = "npx",
Args = ["@playwright/mcp@latest"],
Tools = ["*"]
@@ -1,7 +1,8 @@
#:package GitHub.Copilot.SDK@*
#:property PublishAot=false
using GitHub.Copilot.SDK;
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
using GitHub.Copilot;
var client = new CopilotClient();
@@ -1,7 +1,8 @@
#:package GitHub.Copilot.SDK@*
#:property PublishAot=false
using GitHub.Copilot.SDK;
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
using GitHub.Copilot;
// Create and start client
await using var client = new CopilotClient();
@@ -1,7 +1,8 @@
#:package GitHub.Copilot.SDK@*
#:property PublishAot=false
using GitHub.Copilot.SDK;
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
using GitHub.Copilot;
await using var client = new CopilotClient();
await client.StartAsync();
@@ -1,7 +1,8 @@
#:package GitHub.Copilot.SDK@*
#:property PublishAot=false
using GitHub.Copilot.SDK;
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
using GitHub.Copilot;
await using var client = new CopilotClient();
await client.StartAsync();
@@ -2,7 +2,8 @@
#:property PublishAot=false
using System.Diagnostics;
using GitHub.Copilot.SDK;
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
using GitHub.Copilot;
// ============================================================================
// Git & GitHub Detection
@@ -126,7 +127,7 @@ var owner = parts[0];
var repoName = parts[1];
// Create Copilot client - no custom tools needed!
await using var client = new CopilotClient(new CopilotClientOptions { LogLevel = "error" });
await using var client = new CopilotClient(new CopilotClientOptions { LogLevel = CopilotLogLevel.Error });
await client.StartAsync();
var session = await client.CreateSessionAsync(new SessionConfig
@@ -1,6 +1,7 @@
#:package GitHub.Copilot.SDK@*
using GitHub.Copilot.SDK;
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
using GitHub.Copilot;
// Ralph loop: autonomous AI task loop with fresh context per iteration.
//