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 <noreply@anthropic.com>
This commit is contained in:
claude-hdb 2026-07-10 15:08:18 +00:00
parent 95ba6abbe2
commit e175c416c3
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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}"