From e175c416c3e882c8c0b15bc17b1254bfb9a0a6a3 Mon Sep 17 00:00:00 2001 From: claude-hdb Date: Fri, 10 Jul 2026 15:08:18 +0000 Subject: [PATCH] fix: install from the public canonical heavy-duty/claudebox The fork claude-hdb/claudebox is private, so an anonymous 'curl | bash' against it 401s. Point the installer default and the README one-liner at the public canonical repo so the install flow works without auth. Co-Authored-By: Claude Opus 4.8 --- README.md | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e93ad1..1b2bb25 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ design rationale. ## Install ```sh -curl -fsSL https://raw.githubusercontent.com/claude-hdb/claudebox/main/install.sh | bash +curl -fsSL https://raw.githubusercontent.com/heavy-duty/claudebox/main/install.sh | bash ``` Installs the tree to `~/.local/share/claudebox` and links `claudebox` onto your diff --git a/install.sh b/install.sh index 44aad1b..5d459a4 100755 --- a/install.sh +++ b/install.sh @@ -6,7 +6,7 @@ set -euo pipefail # Downloads the claudebox repo tarball, installs the whole tree under # $DEST, and puts a `claudebox` symlink on PATH via $BINDIR. -REPO="${CLAUDEBOX_REPO:-claude-hdb/claudebox}" +REPO="${CLAUDEBOX_REPO:-heavy-duty/claudebox}" REF="${CLAUDEBOX_REF:-main}" DEST="${CLAUDEBOX_HOME:-$HOME/.local/share/claudebox}" BINDIR="${CLAUDEBOX_BIN:-$HOME/.local/bin}" -- 2.45.2