Skip to content

Commit 139d7a0

Browse files
committed
updated README
1 parent f13441c commit 139d7a0

2 files changed

Lines changed: 17 additions & 6 deletions

File tree

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Minimal coding agent written in Rust, inspired by [pi](https://pi.dev/docs/lates
99

1010
<a href="https://www.producthunt.com/products/zerostack-coding-agent/reviews/new?utm_source=badge-product_review&utm_medium=badge&utm_source=badge-zerostack&#0045;coding&#0045;agent" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/product_review.svg?product_id=1236867&theme=light" alt="Zerostack&#0032;Coding&#0032;Agent - A&#0032;minimal&#0032;coding&#0032;agent&#0044;&#0032;with&#0032;a&#0032;bundle&#0032;of&#0032;innovative&#0032;features | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
1111

12-
*note:* Want to support? Consider [donating here](https://ko-fi.com/gidellav); if you are a company interested in sponsoring zerostack, [contact me here](mailto:giuseppe.dellavedova8+sponsor@gmail.com)
12+
*note:* Want to support? Consider [donating here](https://ko-fi.com/gidellav); if you are a company interested in sponsoring zerostack, [contact me here](mailto:giuseppe.dellavedova8+sponsor@gmail.com). If you want to support without paying, check out [multistack](https://github.com/gi-dellav/multistack).
1313

1414
## Features
1515

@@ -41,7 +41,16 @@ _zerostack_ is one of the smallest and most performant coding agents on the mark
4141

4242
## Installation
4343

44-
### Basic installation (recommended)
44+
### Homebrew (recommended)
45+
46+
```bash
47+
brew tap gi-dellav/tap
48+
brew trust gi-dellav/tap # required for Homebrew 6.0.0+
49+
brew install zerostack
50+
# brew install multistack # Run this to also install multistack (parallel agent manager)
51+
```
52+
53+
### Script
4554

4655
```bash
4756
curl -fsSL https://raw.githubusercontent.com/gi-dellav/zerostack/main/install.sh | bash
@@ -76,6 +85,8 @@ Once installed, run `/prompt autoconfig` inside zerostack to explore the documen
7685

7786
_note:_ If you have questions or you want to collaborate on the project, please join the [dedicated Matrix chatroom](https://app.element.io/#/room/#zerostack-general:matrix.org).
7887

88+
If you want to orchestrate multiple zerostack agents from the terminal, also install [multistack](https://github.com/gi-dellav/multistack).
89+
7990
### Optional: sandbox mode
8091

8192
Install [bubblewrap](https://github.com/containers/bubblewrap) for `--sandbox`,

packaging/homebrew/zerostack.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ class Zerostack < Formula
77
on_macos do
88
if Hardware::CPU.intel?
99
url "https://github.com/gi-dellav/zerostack/releases/download/v1.5.0/zerostack-x86_64-apple-darwin.tar.gz"
10-
sha256 "0000000000000000000000000000000000000000000000000000000000000000"
10+
sha256 "0c5ce2d6cc251bb6dd782f250a321bbb13084d0e88a9536d9d86d7b04a5779e0"
1111
else
1212
url "https://github.com/gi-dellav/zerostack/releases/download/v1.5.0/zerostack-aarch64-apple-darwin.tar.gz"
13-
sha256 "0000000000000000000000000000000000000000000000000000000000000000"
13+
sha256 "100c1a7182343d916e126b342e3cc32bf12bf44e0fa17e392d441171b31c3ebc"
1414
end
1515
end
1616

1717
on_linux do
1818
if Hardware::CPU.intel?
1919
url "https://github.com/gi-dellav/zerostack/releases/download/v1.5.0/zerostack-x86_64-unknown-linux-musl.tar.gz"
20-
sha256 "0000000000000000000000000000000000000000000000000000000000000000"
20+
sha256 "b8b35c4afdc5866ec137e1c15d3dfe47382bc05be17c1360fff1c0382a912aff"
2121
else
2222
url "https://github.com/gi-dellav/zerostack/releases/download/v1.5.0/zerostack-aarch64-unknown-linux-musl.tar.gz"
23-
sha256 "0000000000000000000000000000000000000000000000000000000000000000"
23+
sha256 "0d81ceef899f2a8be800857dca6165fbf3bee682ba12f0f9ccd291abaca7ec0c"
2424
end
2525
end
2626

0 commit comments

Comments
 (0)