-
Notifications
You must be signed in to change notification settings - Fork 449
docs: surface Claude engine option in quick-start add flow #43590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,12 +58,21 @@ gh extension install github/gh-aw | |
|
|
||
| `add-wizard` accepts workflow references in `<owner>/<repo>/<workflow-name>` 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 | ||
| # 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 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [/grill-with-docs] Two commands in one code block without a clear "choose one" label — a new user may try to run both sequentially, or not know which applies. 💡 Suggested fixSplit into two labelled blocks, or add inline comments to distinguish: Or separate them: For Copilot (default): For Claude: @copilot please address this.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added inline comments distinguishing the default (interactive) and Claude (pre-selected) variants. Fixed in the latest commit. |
||
| ``` | ||
|
|
||
| > [!IMPORTANT] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Contradicts the wizard's own interactive step: the callout says omitting 💡 What to fixThe unchanged doc already states:
So
Blurring these will make users think the wizard silently routes them to Copilot when they skip the flag. Suggested rewrite: > [!IMPORTANT]
> Passing `--engine claude` pre-selects Claude and skips the interactive engine prompt (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.If the wizard's prompt actually defaults to Copilot as a pre-selected choice, state that explicitly so the callout is accurate and consistent with the step list below.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rewrote the callout to accurately describe what |
||
| > 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: | ||
|
|
||
| 1. **Check prerequisites** - Verify repository permissions. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.