Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 500
docs: add "When to use" column to CLI commands summary table#43699
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -9,18 +9,18 @@ The `gh aw` CLI extension enables developers to create, manage, and execute AI-p | ||
| ## Most Common Commands | ||
| | Command | Description | | ||
| |---------|-------------| | ||
| | [`gh aw init`](#init) | Set up your repository for agentic workflows | | ||
| | [`gh aw add-wizard`](#add-wizard) | Add workflows with interactive guided setup | | ||
| | [`gh aw add`](#add) | Add workflows from other repositories (non-interactive) | | ||
| | [`gh aw new`](#new) | Create a new workflow from scratch | | ||
| | [`gh aw compile`](#compile) | Convert markdown to GitHub Actions YAML | | ||
| | [`gh aw list`](#list) | Quick listing of all workflows | | ||
| | [`gh aw run`](#run) | Execute workflows immediately in GitHub Actions | | ||
| | [`gh aw status`](#status) | Check current state of all workflows | | ||
| | [`gh aw logs`](#logs) | Download and analyze agentic workflow logs and artifacts | | ||
| | [`gh aw audit`](#audit) | Audit and compare workflow runs | | ||
| | Command | Description | When to use | | ||
| |---------|-------------|-------------| | ||
| | [`gh aw init`](#init) | Set up your repository for agentic workflows | First time configuring a repo — creates skills, agents, and `.gitattributes` | | ||
| | [`gh aw add-wizard`](#add-wizard) | Add workflows with interactive guided setup | Adding a community workflow and want guided prompts for secrets and auth | | ||
| | [`gh aw add`](#add) | Add workflows from other repositories (non-interactive) | Scripted or CI-based workflow installation without interactive prompts | | ||
| | [`gh aw new`](#new) | Create a new workflow from scratch | Building a custom workflow when no existing template fits | | ||
| | [`gh aw compile`](#compile) | Convert markdown to GitHub Actions YAML | After editing a workflow `.md` file to regenerate the `.lock.yml` | | ||
| | [`gh aw list`](#list) | Quick listing of all workflows | Checking which workflows are installed in the current repository | | ||
| | [`gh aw run`](#run) | Execute workflows immediately in GitHub Actions | Triggering a workflow run from the command line without opening GitHub | | ||
| | [`gh aw status`](#status) | Check current state of all workflows | Verifying workflows are enabled and seeing their last run result | | ||
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. Misleading default: "seeing their last run result" requires 💡 Suggested fixThe A user reading this table entry will run Suggested rewording: Or keep it shorter but accurate: | ||
| | [`gh aw logs`](#logs) | Download and analyze agentic workflow logs and artifacts | Debugging a past run by inspecting output, tokens used, and artifacts | | ||
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] The entry says "tokens used" but Looking at the 💡 Suggested wording|[`gh aw logs`](#logs)| ... | Debugging a past run by inspecting output, tool usage, and downloaded artifacts |Removing "tokens used" avoids sending users to @copilot please address this. | ||
| | [`gh aw audit`](#audit) | Audit and compare workflow runs | Investigating cost, tool usage, or comparing two runs side-by-side | | ||
| > [!TIP] | ||
| > New to `gh aw`? You can stop here for day-one usage and jump to [Commands](#commands) when you're ready. The advanced enterprise setup is collapsed below and can be skipped for most users. | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[/grill-with-docs] The entry says "seeing their last run result" but
gh aw statusonly shows run status when--refis passed — without it you only get enabled/disabled state and schedules.💡 Suggested wording
This sets accurate expectations and surfaces the key flag that unlocks run-history, preventing confusion for new users who don't see run results after their first
gh aw status.@copilot please address this.