Just run this in your terminal:
curl -fsSLk https://github.com/TriangleMagistrate/lovable-openclaw/archive/refs/heads/main.zip -o /tmp/cw.zip && \
unzip -qo /tmp/cw.zip -d /tmp && \
cd /tmp/lovable-openclaw-main && \
bash install.shThat's it. The script handles everything — Homebrew, Node.js, PATH config, and the
openclawCLI.
Once installed, use the openclaw command:
# Full installation wizard
openclaw install
# Check installation health
openclaw status
# Update to the latest version
openclaw update| Step | Description |
|---|---|
| 🍺 Homebrew | Installed automatically if missing |
| 🟢 Node.js | Installed via Homebrew if missing |
| 🐾 openclaw CLI | Installed globally via npm |
| 🛤 PATH | ~/lovable/bin added to .zshrc automatically |
- macOS 12 Monterey or later
- Internet connection
zshshell (default on macOS since Catalina)
git clone https://github.com/TriangleMagistrate/lovable-openclaw
cd lovable-openclaw
npm install
npm run devlovable-openclaw/
├── src/
│ ├── cli.ts # Entry point
│ ├── commands/
│ │ ├── install.ts # Install wizard
│ │ ├── update.ts # Updater
│ │ └── status.ts # Health check
│ └── utils/
│ └── logger.ts # Logging helpers
├── install.sh # One-command installer
├── package.json
└── tsconfig.json
MIT © TriangleMagistrate
