From c6d22f8a0139c11687add065b79098f0c03c19c0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 16 Jun 2026 18:19:51 +0000 Subject: [PATCH 1/3] Initial plan From 4cb4312b39ab721d91783706b184fb35a7f84579 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 16 Jun 2026 18:30:46 +0000 Subject: [PATCH 2/3] docs: clarify Claude quick-start setup requirements Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/src/content/docs/setup/quick-start.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/src/content/docs/setup/quick-start.mdx b/docs/src/content/docs/setup/quick-start.mdx index 17eed0c2518..3ccc2461632 100644 --- a/docs/src/content/docs/setup/quick-start.mdx +++ b/docs/src/content/docs/setup/quick-start.mdx @@ -59,9 +59,12 @@ gh extension install github/gh-aw From your repository root run: ```text wrap +gh aw init --engine claude gh aw add-wizard githubnext/agentics/daily-repo-status ``` +Use `gh aw init --engine claude` when setting up Claude in a repository. By default, `gh aw init` creates Copilot-oriented artifacts unless `--engine claude` is provided. + `add-wizard` accepts workflow references in `//` format. In this example, `githubnext/agentics/daily-repo-status` references the `daily-repo-status` workflow hosted in the public [githubnext/agentics](https://github.com/githubnext/agentics) examples repository. This will take you through an interactive process to: @@ -85,6 +88,7 @@ The wizard generates a compiled workflow file (`.lock.yml`) automatically — yo > **Setting up `ANTHROPIC_API_KEY`?** > 1. Create an API key in [Anthropic Console](https://console.anthropic.com/settings/keys). > 2. Add it as a repository secret from your repository root with `gh secret set ANTHROPIC_API_KEY < /path/to/key.txt`, or use the GitHub UI. See [Authentication](/gh-aw/reference/auth/#anthropic_api_key) for more detail. +> 3. `CLAUDE_CODE_OAUTH_TOKEN` (Claude Max/Teams OAuth) is not supported and is ignored by GitHub Agentic Workflows. Use `ANTHROPIC_API_KEY` instead. > > [!TIP] From 0f14dc27fd7658c9309002aa50e136a3833bfb85 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 16 Jun 2026 18:33:10 +0000 Subject: [PATCH 3/3] docs: refine Claude quick-start command guidance Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/src/content/docs/setup/quick-start.mdx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/setup/quick-start.mdx b/docs/src/content/docs/setup/quick-start.mdx index 3ccc2461632..7669372c3b2 100644 --- a/docs/src/content/docs/setup/quick-start.mdx +++ b/docs/src/content/docs/setup/quick-start.mdx @@ -59,11 +59,14 @@ gh extension install github/gh-aw From your repository root run: ```text wrap +# Claude users: run once per repository to skip Copilot-oriented init artifacts gh aw init --engine claude + +# Then add the sample workflow gh aw add-wizard githubnext/agentics/daily-repo-status ``` -Use `gh aw init --engine claude` when setting up Claude in a repository. By default, `gh aw init` creates Copilot-oriented artifacts unless `--engine claude` is provided. +If the repository is already initialized, or if not using Claude, skip the `gh aw init --engine claude` command. By default, `gh aw init` creates Copilot-oriented artifacts unless `--engine claude` is provided. `add-wizard` accepts workflow references in `//` format. In this example, `githubnext/agentics/daily-repo-status` references the `daily-repo-status` workflow hosted in the public [githubnext/agentics](https://github.com/githubnext/agentics) examples repository. @@ -88,7 +91,7 @@ The wizard generates a compiled workflow file (`.lock.yml`) automatically — yo > **Setting up `ANTHROPIC_API_KEY`?** > 1. Create an API key in [Anthropic Console](https://console.anthropic.com/settings/keys). > 2. Add it as a repository secret from your repository root with `gh secret set ANTHROPIC_API_KEY < /path/to/key.txt`, or use the GitHub UI. See [Authentication](/gh-aw/reference/auth/#anthropic_api_key) for more detail. -> 3. `CLAUDE_CODE_OAUTH_TOKEN` (Claude Max/Teams OAuth) is not supported and is ignored by GitHub Agentic Workflows. Use `ANTHROPIC_API_KEY` instead. +> `CLAUDE_CODE_OAUTH_TOKEN` (Claude Max/Teams OAuth) is not supported and is ignored by GitHub Agentic Workflows. Use `ANTHROPIC_API_KEY` instead. > > [!TIP]