Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,23 @@ jobs:
--generate-notes \
release-artifacts/*

# ---------------------------------------------------------------------------
# Update Homebrew formula in the tap repo
# ---------------------------------------------------------------------------
update-homebrew:
name: Update Homebrew Formula
needs: assemble
runs-on: ubuntu-latest
steps:
- name: Dispatch to homebrew tap
env:
GH_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_PAT }}
run: |
VERSION="${GITHUB_REF_NAME#v}"
gh api repos/superradcompany/homebrew-microsandbox/dispatches \
-f event_type=update-formula \
-f "client_payload[version]=$VERSION"

# ---------------------------------------------------------------------------
# Publish Node SDK to npm
# ---------------------------------------------------------------------------
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ Today, AI agents operate with whatever permissions you give them, and that's usu

The SDK works on its own without the CLI. The `msb` CLI is a separate tool for managing sandboxes, images, and volumes from the terminal, and for giving AI agents direct access to microsandbox:

> **macOS**:
> ```sh
> brew tap superradcompany/microsandbox
> brew install microsandbox
> ```

> **macOS / Linux**:
> ```sh
> curl -fsSL https://install.microsandbox.dev | sh
> ```
Expand Down
Loading