Skip to content

Commit ddae9d4

Browse files
committed
fix up agentics
1 parent 212e871 commit ddae9d4

35 files changed

Lines changed: 161 additions & 161 deletions

.github/aw/actions-lock.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"version": "v8",
1616
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
1717
},
18-
"githubnext/gh-aw/actions/setup@v0.37.27": {
19-
"repo": "githubnext/gh-aw/actions/setup",
18+
"github/gh-aw/actions/setup@v0.37.27": {
19+
"repo": "github/gh-aw/actions/setup",
2020
"version": "v0.37.27",
2121
"sha": "a5ea9beb1b6775cad8a63b18cf72a6efd6f7c044"
2222
}

.github/aw/create-agentic-workflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ You love to use emojis to make the conversation more engaging.
5757

5858
- Always consult the **instructions file** for schema and features:
5959
- Local copy: @.github/aw/github-agentic-workflows.md
60-
- Canonical upstream: https://raw.githubusercontent.com/githubnext/gh-aw/main/.github/aw/github-agentic-workflows.md
60+
- Canonical upstream: https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md
6161
- Key commands:
6262
- `gh aw compile` → compile all workflows
6363
- `gh aw compile <name>` → compile one workflow
@@ -67,7 +67,7 @@ You love to use emojis to make the conversation more engaging.
6767
## Learning from Reference Materials
6868

6969
Before creating workflows, read the Peli's Agent Factory documentation:
70-
- Fetch: https://githubnext.github.io/gh-aw/llms-create-agentic-workflows.txt
70+
- Fetch: https://github.github.com/gh-aw/llms-create-agentic-workflows.txt
7171

7272
This llms.txt file contains workflow patterns, best practices, safe outputs, and permissions models.
7373

.github/aw/debug-agentic-workflow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The tools output is not visible to the user unless you explicitly print it. Alwa
1818

1919
**Example: Debugging from a workflow run URL**
2020

21-
User: "Investigate the reason there is a missing tool call in this run: https://github.com/githubnext/gh-aw/actions/runs/20135841934"
21+
User: "Investigate the reason there is a missing tool call in this run: https://github.com/github/gh-aw/actions/runs/20135841934"
2222

2323
Your response:
2424
```
@@ -51,7 +51,7 @@ Report back with specific findings and actionable fixes.
5151
- The `gh aw` CLI is already installed in this environment.
5252
- Always consult the **instructions file** for schema and features:
5353
- Local copy: @.github/aw/github-agentic-workflows.md
54-
- Canonical upstream: https://raw.githubusercontent.com/githubnext/gh-aw/main/.github/aw/github-agentic-workflows.md
54+
- Canonical upstream: https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md
5555

5656
**Key Commands Available**
5757

@@ -136,7 +136,7 @@ Report back with specific findings and actionable fixes.
136136

137137
## Debug Flow: Workflow Run URL Analysis
138138

139-
When the user provides a workflow run URL (e.g., `https://github.com/githubnext/gh-aw/actions/runs/20135841934`):
139+
When the user provides a workflow run URL (e.g., `https://github.com/github/gh-aw/actions/runs/20135841934`):
140140

141141
1. **Extract Run ID**
142142

@@ -339,7 +339,7 @@ Use these tactics when a run is still executing or finishes without artifacts:
339339
- **Polling in-progress runs**: If `gh aw audit <run-id> --json` returns `"status": "in_progress"`, wait ~45s and re-run the command or monitor the run URL directly. Avoid spamming the API—loop with `sleep` intervals.
340340
- **Check run annotations**: `gh run view <run-id>` reveals whether a maintainer cancelled the run. If a manual cancellation is noted, expect missing safe-output artifacts and recommend re-running instead of searching for nonexistent files.
341341
- **Inspect specific job logs**: Use `gh run view --job <job-id> --log` (job IDs are listed in `gh run view <run-id>`) to see the exact failure step.
342-
- **Download targeted artifacts**: When `gh aw logs` would fetch many runs, download only the needed artifact, e.g. `GH_REPO=githubnext/gh-aw gh run download <run-id> -n agent-stdio.log`.
342+
- **Download targeted artifacts**: When `gh aw logs` would fetch many runs, download only the needed artifact, e.g. `GH_REPO=github/gh-aw gh run download <run-id> -n agent-stdio.log`.
343343
- **Review cached run summaries**: `gh aw audit` stores artifacts under `logs/run-<run-id>/`. Inspect `run_summary.json` or `agent-stdio.log` there for offline analysis before re-running workflows.
344344

345345
## Common Issues to Look For

.github/aw/github-agentic-workflows.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1647,13 +1647,13 @@ Use `gh aw compile --verbose` to see detailed validation messages, or `gh aw com
16471647
### Installation
16481648

16491649
```bash
1650-
gh extension install githubnext/gh-aw
1650+
gh extension install github/gh-aw
16511651
```
16521652

16531653
If there are authentication issues, use the standalone installer:
16541654

16551655
```bash
1656-
curl -O https://raw.githubusercontent.com/githubnext/gh-aw/main/install-gh-aw.sh
1656+
curl -O https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh
16571657
chmod +x install-gh-aw.sh
16581658
./install-gh-aw.sh
16591659
```
@@ -1682,4 +1682,4 @@ gh aw logs <workflow-id>
16821682

16831683
### Documentation
16841684

1685-
For complete CLI documentation, see: https://githubnext.github.io/gh-aw/setup/cli/
1685+
For complete CLI documentation, see: https://github.github.com/gh-aw/setup/cli/

.github/aw/update-agentic-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You format your questions and responses similarly to the GitHub Copilot CLI chat
2424

2525
- Always consult the **instructions file** for schema and features:
2626
- Local copy: @.github/aw/github-agentic-workflows.md
27-
- Canonical upstream: https://raw.githubusercontent.com/githubnext/gh-aw/main/.github/aw/github-agentic-workflows.md
27+
- Canonical upstream: https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md
2828
- Key commands:
2929
- `gh aw compile` → compile all workflows
3030
- `gh aw compile <name>` → compile one workflow

.github/aw/upgrade-agentic-workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Read the ENTIRE content of this file carefully before proceeding. Follow the ins
1515
- The `gh aw` CLI may be available in this environment.
1616
- Always consult the **instructions file** for schema and features:
1717
- Local copy: @.github/aw/github-agentic-workflows.md
18-
- Canonical upstream: https://raw.githubusercontent.com/githubnext/gh-aw/main/.github/aw/github-agentic-workflows.md
18+
- Canonical upstream: https://raw.githubusercontent.com/github/gh-aw/main/.github/aw/github-agentic-workflows.md
1919

2020
**Key Commands Available**
2121

@@ -41,7 +41,7 @@ Read the ENTIRE content of this file carefully before proceeding. Follow the ins
4141
Before upgrading, always review what's new:
4242

4343
1. **Fetch Latest Release Information**
44-
- Use GitHub tools to fetch the CHANGELOG.md from the `githubnext/gh-aw` repository
44+
- Use GitHub tools to fetch the CHANGELOG.md from the `github/gh-aw` repository
4545
- Review and understand:
4646
- Breaking changes
4747
- New features

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@v4
1414
- name: Install gh-aw
15-
run: gh extension install githubnext/gh-aw
15+
run: gh extension install github/gh-aw
1616
env:
1717
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
- name: Verify gh-aw installation

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout repository
1414
uses: actions/checkout@v4
1515
- name: Install gh-aw extension
16-
uses: githubnext/gh-aw/actions/setup-cli@v0.37.20
16+
uses: github/gh-aw/actions/setup-cli@v0.37.20
1717
with:
1818
version: v0.37.20
1919
- name: Verify gh-aw installation

0 commit comments

Comments
 (0)