From a279c9eeed8ceaace1d5781029270f0256139454 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 5 Jul 2026 16:02:23 +0000 Subject: [PATCH 1/3] Initial plan From 7956c5414de80ef4d4b43301a3a9025e960ab2e8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 5 Jul 2026 16:27:06 +0000 Subject: [PATCH 2/3] docs: clarify Claude engine option in quick-start add step Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/src/content/docs/setup/quick-start.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/setup/quick-start.mdx b/docs/src/content/docs/setup/quick-start.mdx index ff8bd18fa3f..b8db083f160 100644 --- a/docs/src/content/docs/setup/quick-start.mdx +++ b/docs/src/content/docs/setup/quick-start.mdx @@ -58,12 +58,16 @@ gh extension install github/gh-aw `add-wizard` accepts workflow references in `//` format. In this guide, `githubnext/agentics` is the public [githubnext/agentics](https://github.com/githubnext/agentics) examples repository, and `daily-repo-status` is one of the sample workflows it publishes. -From your repository root run: +From your repository root run one of these commands: ```text wrap gh aw add-wizard githubnext/agentics/daily-repo-status +gh aw add-wizard githubnext/agentics/daily-repo-status --engine claude ``` +> [!IMPORTANT] +> If a workflow frontmatter omits `engine:`, GitHub Agentic Workflows defaults to Copilot. To use Claude, pass `--engine claude` during add, or set `engine: claude` in workflow frontmatter. + This will take you through an interactive process to: 1. **Check prerequisites** - Verify repository permissions. From b1665062c3f21259535831316eeaf65f46ffd02f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 5 Jul 2026 18:13:05 +0000 Subject: [PATCH 3/3] docs: add inline comments to code block and fix IMPORTANT callout accuracy Co-authored-by: gh-aw-bot <259018956+gh-aw-bot@users.noreply.github.com> --- docs/src/content/docs/setup/quick-start.mdx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/setup/quick-start.mdx b/docs/src/content/docs/setup/quick-start.mdx index b8db083f160..32f5b1750cc 100644 --- a/docs/src/content/docs/setup/quick-start.mdx +++ b/docs/src/content/docs/setup/quick-start.mdx @@ -58,15 +58,20 @@ gh extension install github/gh-aw `add-wizard` accepts workflow references in `//` format. In this guide, `githubnext/agentics` is the public [githubnext/agentics](https://github.com/githubnext/agentics) examples repository, and `daily-repo-status` is one of the sample workflows it publishes. -From your repository root run one of these commands: +From your repository root, run one of these commands: ```text wrap +# default — wizard will ask you to choose an engine interactively gh aw add-wizard githubnext/agentics/daily-repo-status + +# pre-select Claude and skip the interactive engine prompt gh aw add-wizard githubnext/agentics/daily-repo-status --engine claude ``` > [!IMPORTANT] -> If a workflow frontmatter omits `engine:`, GitHub Agentic Workflows defaults to Copilot. To use Claude, pass `--engine claude` during add, or set `engine: claude` in workflow frontmatter. +> Passing `--engine claude` pre-selects Claude and skips the interactive engine-selection step (Step 2 below). +> If you omit the flag, the wizard will ask you to choose. +> Note: if `engine:` is later removed from the workflow frontmatter manually, the runtime defaults to Copilot. This will take you through an interactive process to: