From 8caf726900cfec439d476c44bba34529d4aa5876 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 4 Apr 2026 04:34:28 +0000 Subject: [PATCH 1/2] Initial plan From 248e942a87bc2e8ef274360babb14810338281e6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 4 Apr 2026 04:36:42 +0000 Subject: [PATCH 2/2] fix: replace curl | bash with gh extension install in install.md - Make `gh extension install github/gh-aw` the primary install method - Move curl-based install to collapsible fallback with download-then-execute - Use `-f` flag (fail on HTTP errors), remove `-s` (silent) flag - Update troubleshooting section reference Fixes #12 Agent-Logs-Url: https://github.com/githubnext/autoloop/sessions/a6c8d12b-6d27-417a-951f-582d4adcfce3 Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com> --- install.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/install.md b/install.md index df7cacd..52923c9 100644 --- a/install.md +++ b/install.md @@ -15,12 +15,25 @@ Set up Autoloop in this repository by: ## Step 1: Install gh-aw CLI Extension -Run the installation script from the gh-aw repository: +Install the gh-aw extension directly via the GitHub CLI: ```bash -curl -sL https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh | bash +gh extension install github/gh-aw ``` +
+Alternative: install via shell script + +If `gh extension install` is unavailable, download and run the installation script manually: + +```bash +curl -fL https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh -o /tmp/install-gh-aw.sh +bash /tmp/install-gh-aw.sh +rm -f /tmp/install-gh-aw.sh +``` + +
+ **Verify installation**: ```bash @@ -30,7 +43,7 @@ gh aw version You should see version information displayed. If you encounter an error, check that: - GitHub CLI (`gh`) is installed and authenticated -- The installation script completed without errors +- The installation completed without errors ## Step 2: Initialize Repository for Agentic Workflows @@ -123,7 +136,7 @@ Optionally, you may copy existing examples from the [`.autoloop/programs/`](.aut ### gh aw not found - Verify GitHub CLI is installed: `gh --version` -- Re-run the installation script from Step 1 +- Re-run the installation command from Step 1 - Check that `gh auth status` shows a valid session ### Compile fails