chore(aaif): rename a bunch of repository references (#8152)

Signed-off-by: Michael Neale <michael.neale@gmail.com>
Co-authored-by: Michael Neale <michael.neale@gmail.com>

continuing migration to aaif
This commit is contained in:
Jack Amadeo
2026-04-07 01:34:48 -04:00
committed by GitHub
parent 0b080faad5
commit 583acd4335
236 changed files with 1097 additions and 962 deletions
+2 -1
View File
@@ -29,6 +29,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libxcb-xfixes0 \
libxkbcommon0 \
libgl1-mesa-glx \
libgomp1 \
&& rm -rf /var/lib/apt/lists/*
# Install Node.js (LTS) and npm/npx via NodeSource
@@ -45,7 +46,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh && \
uv --version && uvx --version
# Pre-download and install Goose CLI to avoid network issues during runtime
RUN curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | \
RUN curl -fsSL https://github.com/aaif-goose/goose/releases/download/stable/download_cli.sh | \
CONFIGURE=false GOOSE_BIN_DIR=/usr/local/bin bash && \
echo "✅ Goose CLI pre-installed: $(/usr/local/bin/goose --version)"
+2 -2
View File
@@ -204,7 +204,7 @@ if [ ! -f "$GOOSE_BIN" ]; then
echo "⬇️ Installing Goose CLI..."
if curl -fsSL --connect-timeout 30 --max-time 300 \
https://github.com/block/goose/releases/download/stable/download_cli.sh | bash; then
https://github.com/aaif-goose/goose/releases/download/stable/download_cli.sh | bash; then
for path in "$HOME/.local/bin/goose" "/usr/local/bin/goose" "$(which goose 2>/dev/null || true)"; do
if [ -n "$path" ] && [ -f "$path" ] && [ -x "$path" ]; then
cp "$path" "$GOOSE_BIN"
@@ -219,7 +219,7 @@ if [ ! -f "$GOOSE_BIN" ]; then
echo "⚠️ Trying direct download..."
temp_dir=$(mktemp -d)
if curl -fsSL --connect-timeout 30 --max-time 300 \
"https://github.com/block/goose/releases/download/stable/goose-x86_64-unknown-linux-gnu.tar.bz2" \
"https://github.com/aaif-goose/goose/releases/download/stable/goose-x86_64-unknown-linux-gnu.tar.bz2" \
-o "$temp_dir/goose.tar.bz2"; then
tar -xjf "$temp_dir/goose.tar.bz2" -C "$temp_dir"
goose_binary=$(find "$temp_dir" -name "goose" -type f -executable | head -1)