> ## Documentation Index
> Fetch the complete documentation index at: https://docs.equa.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# Bundled gateway

# Gateway on macOS (external launchd)

Equabot.app no longer bundles Node/Bun or the Gateway runtime. The macOS app
expects an **external** `equabot` CLI install, does not spawn the Gateway as a
child process, and manages a per‑user launchd service to keep the Gateway
running (or attaches to an existing local Gateway if one is already running).

## Install the CLI (required for local mode)

You need Node 22+ on the Mac, then install `equabot` globally:

```bash theme={null}
npm install -g equabot@<version>
```

The macOS app’s **Install CLI** button runs the same flow via npm/pnpm (bun not recommended for Gateway runtime).

## Launchd (Gateway as LaunchAgent)

Label:

* `com.equabot.gateway` (or `com.equabot.<profile>`)

Plist location (per‑user):

* `~/Library/LaunchAgents/com.equabot.gateway.plist`
  (or `~/Library/LaunchAgents/com.equabot.<profile>.plist`)

Manager:

* The macOS app owns LaunchAgent install/update in Local mode.
* The CLI can also install it: `equabot gateway install`.

Behavior:

* “Equabot Active” enables/disables the LaunchAgent.
* App quit does **not** stop the gateway (launchd keeps it alive).
* If a Gateway is already running on the configured port, the app attaches to
  it instead of starting a new one.

Logging:

* launchd stdout/err: `/tmp/equabot/equabot-gateway.log`

## Version compatibility

The macOS app checks the gateway version against its own version. If they’re
incompatible, update the global CLI to match the app version.

## Smoke check

```bash theme={null}
equabot --version

EQUABOT_SKIP_CHANNELS=1 \
EQUABOT_SKIP_CANVAS_HOST=1 \
equabot gateway --port 18999 --bind loopback
```

Then:

```bash theme={null}
equabot gateway call health --url ws://127.0.0.1:18999 --timeout 3000
```
