chore: publish from staged

This commit is contained in:
github-actions[bot]
2026-06-17 04:13:48 +00:00
parent d30a1821e3
commit cc09081a80
14 changed files with 65 additions and 36 deletions
+2 -2
View File
@@ -42,7 +42,7 @@ A [Ralph loop](https://ghuntley.com/ralph/) is an autonomous development workflo
The minimal Ralph loop — the SDK equivalent of `while :; do cat PROMPT.md | copilot ; done`:
```csharp
using GitHub.Copilot.SDK;
using GitHub.Copilot;
var client = new CopilotClient();
await client.StartAsync();
@@ -96,7 +96,7 @@ This is all you need to get started. The prompt file tells the agent what to do;
The full Ralph pattern with planning and building modes, matching the [Ralph Playbook](https://github.com/ClaytonFarr/ralph-playbook) architecture:
```csharp
using GitHub.Copilot.SDK;
using GitHub.Copilot;
// Parse args: dotnet run [plan] [max_iterations]
var mode = args.Contains("plan") ? "plan" : "build";