mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-04-25 00:06:21 +02:00
feat: GitHub Release workflow + Homebrew tap + install badges
- .github/workflows/release.yml: builds prebuilt binaries for macOS (arm64, x86_64) and Linux (x86_64, aarch64) on tag push. Creates GitHub Release with tarballs + SHA256SUMS. Auto-updates Homebrew formula via bump-homebrew-formula-action. - README: added GitHub download count + npm install count badges. Install section now lists: Homebrew, prebuilt binaries, cargo install --git, Docker, Docker Compose. - Homebrew tap created at github.com/0xMassi/homebrew-webclaw with Formula/webclaw.rb (installs webclaw + webclaw-mcp binaries). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
d521a79a66
commit
d2887cace8
2 changed files with 129 additions and 6 deletions
26
README.md
26
README.md
|
|
@ -13,7 +13,8 @@
|
|||
<a href="https://webclaw.io"><img src="https://img.shields.io/badge/website-webclaw.io-212529?style=flat-square" alt="Website" /></a>
|
||||
<a href="https://webclaw.io/docs"><img src="https://img.shields.io/badge/docs-webclaw.io%2Fdocs-212529?style=flat-square" alt="Docs" /></a>
|
||||
<a href="https://github.com/0xMassi/webclaw/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-212529?style=flat-square" alt="License" /></a>
|
||||
<a href="https://www.npmjs.com/package/create-webclaw"><img src="https://img.shields.io/npm/v/create-webclaw?style=flat-square&label=npx%20create-webclaw&color=212529" alt="npm" /></a>
|
||||
<a href="https://github.com/0xMassi/webclaw/releases"><img src="https://img.shields.io/github/downloads/0xMassi/webclaw/total?style=flat-square&label=downloads&color=212529" alt="Downloads" /></a>
|
||||
<a href="https://www.npmjs.com/package/create-webclaw"><img src="https://img.shields.io/npm/dt/create-webclaw?style=flat-square&label=npm%20installs&color=212529" alt="npm installs" /></a>
|
||||
<a href="https://github.com/0xMassi/webclaw/stargazers"><img src="https://img.shields.io/github/stars/0xMassi/webclaw?style=flat-square&color=212529" alt="Stars" /></a>
|
||||
<a href="https://discord.gg/KDfd48EpnW"><img src="https://img.shields.io/badge/discord-join-5865F2?style=flat-square&logo=discord&logoColor=white" alt="Discord" /></a>
|
||||
</p>
|
||||
|
|
@ -52,14 +53,27 @@ npx create-webclaw
|
|||
|
||||
Auto-detects your AI tools, downloads the MCP server, and configures everything. One command.
|
||||
|
||||
### CLI
|
||||
### Homebrew (macOS/Linux)
|
||||
|
||||
```bash
|
||||
# From source
|
||||
git clone https://github.com/0xMassi/webclaw && cd webclaw
|
||||
cargo build --release
|
||||
brew tap 0xMassi/webclaw
|
||||
brew install webclaw
|
||||
```
|
||||
|
||||
# Or via Docker
|
||||
### Prebuilt binaries
|
||||
|
||||
Download from [GitHub Releases](https://github.com/0xMassi/webclaw/releases) for macOS (arm64, x86_64) and Linux (x86_64, aarch64).
|
||||
|
||||
### Cargo (from source)
|
||||
|
||||
```bash
|
||||
cargo install --git https://github.com/0xMassi/webclaw.git webclaw-cli
|
||||
cargo install --git https://github.com/0xMassi/webclaw.git webclaw-mcp
|
||||
```
|
||||
|
||||
### Docker
|
||||
|
||||
```bash
|
||||
docker run --rm ghcr.io/0xmassi/webclaw https://example.com
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue