diff --git a/docs/src/content/docs/setup/quick-start.mdx b/docs/src/content/docs/setup/quick-start.mdx index 17eed0c2518..7669372c3b2 100644 --- a/docs/src/content/docs/setup/quick-start.mdx +++ b/docs/src/content/docs/setup/quick-start.mdx @@ -59,9 +59,15 @@ 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 ``` +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. This will take you through an interactive process to: @@ -85,6 +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. +> `CLAUDE_CODE_OAUTH_TOKEN` (Claude Max/Teams OAuth) is not supported and is ignored by GitHub Agentic Workflows. Use `ANTHROPIC_API_KEY` instead. > > [!TIP]