Static Linux builds of Claw Code with automatic update monitoring and CLIProxyAPI integration.
curl -sSL https://raw.githubusercontent.com/raiden076/claw-code-linux/main/install-claw.sh | bash- ✅ Static binaries - No Rust toolchain needed
- ✅ Automatic updates - Daily monitoring of upstream repos
- ✅ CLIProxyAPI integration - Use your existing AI subscriptions
- ✅ One-command update -
install-claw.sh update - ✅ WhatsApp notifications - Get notified when updates are available
- Claw - Static binary from GitHub releases (~5MB)
- Bun - Fast JavaScript runtime (optional, if no runtime found)
- CLIProxyAPI - Pre-built binary from official releases (~12MB)
claw # Start REPL
claw prompt "hi" # One-shot mode
claw --help # Show helpclaw-with-proxy # Uses CLIProxyAPI for API routing# Method 1: Re-run installer with update flag
curl -sSL https://raw.githubusercontent.com/raiden076/claw-code-linux/main/install-claw.sh | bash -s -- update
# Method 2: If already installed locally
install-claw.sh updateEdit ~/.claw-proxy/config.yaml to add your AI provider accounts:
providers:
gemini:
- name: "personal"
auth_type: "oauth"
claude:
- name: "personal"
auth_type: "oauth"Then authenticate:
~/.claw-proxy/cliproxyapi loginStart the proxy:
~/.claw-proxy/start-proxy.shOr install as systemd service:
sudo cp ~/.claw-proxy/claw-proxy.service /etc/systemd/system/
sudo systemctl enable --now claw-proxyThis repository includes automatic update monitoring:
- Checks daily at 9am for upstream changes
- Monitors:
ultraworkers/claw-code(new commits)router-for-me/CLIProxyAPI(new releases)
- Actions on update:
- Syncs changes to this fork
- Triggers new GitHub Actions build
- Sends WhatsApp notification
cd ~/claw-code-linux
./scripts/update-checker.sh~/claw-code-linux/
├── install-claw.sh # Main installer
├── scripts/
│ ├── update-checker.sh # Daily update monitor
│ ├── trigger-rebuild.sh # Sync & rebuild trigger
│ └── run-daily-check.sh # Cron wrapper
├── .update-state/ # State files (commit SHAs, etc.)
└── .github/workflows/
└── build-linux.yml # GitHub Actions build
- x86_64 (
x86_64-unknown-linux-musl) - ARM64 (
aarch64-unknown-linux-musl)
Fully static binaries - work on any Linux distribution.
- Claw Code: Original Repo
- CLIProxyAPI: Help Docs
Same as upstream Claw Code project.