diff --git a/docs/src/content/docs/setup/cli.md b/docs/src/content/docs/setup/cli.md index 85a27fc73a..5d069ba265 100644 --- a/docs/src/content/docs/setup/cli.md +++ b/docs/src/content/docs/setup/cli.md @@ -405,11 +405,12 @@ gh aw status # Show all workflow status gh aw status --ref main # Show status with latest run info for main branch gh aw status --json --ref feature-branch # JSON output with run status for specific branch gh aw status --label automation # Filter workflows by label +gh aw status --repo owner/other-repo # Check status in different repository ``` Lists all agentic workflows with their current state, enabled/disabled status, schedules, labels, and configurations. When `--ref` is specified, includes the latest run status and conclusion for each workflow on that branch or tag. -**Options:** `--ref` (filter by branch or tag, shows latest run status and conclusion), `--label` (filter workflows by label, case-insensitive match), `--json` (output in JSON format) +**Options:** `--ref` (filter by branch or tag, shows latest run status and conclusion), `--label` (filter workflows by label, case-insensitive match), `--json` (output in JSON format), `--repo owner/repo` (check workflow status in specific repository, defaults to current) #### `logs`