docs: add go install fallback for Claude Code web (GH #439)

Add documentation for users experiencing npm postinstall failures in Claude Code web environments due to network restrictions.

Closes: bd-8q0

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-01 21:09:53 -08:00
parent d045da4f13
commit d90936116d
3 changed files with 64 additions and 2 deletions

View File

@@ -91,6 +91,12 @@ go build -o bd ./cmd/bd
npm install -g @beads/bd
```
**Claude Code web fallback** (if npm postinstall fails due to network restrictions):
```bash
go install github.com/steveyegge/beads/cmd/bd@latest
export PATH="$PATH:$HOME/go/bin" # Required each session
```
**Quick install (macOS / Linux):**
```bash
curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash