Category Archives: Uncategorized

1st thing to do with new Mac Tahoe 26 OS clone open claw MOTLY

#!/bin/bash

echo “=== Installing Xcode Command Line Tools ===”
xcode-select –install 2>/dev/null

echo “=== Installing Homebrew ===”
/bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)”

echo ‘eval “$(/opt/homebrew/bin/brew shellenv)”‘ >> ~/.zprofile eval “$(/opt/homebrew/bin/brew shellenv)”

echo “=== Updating Homebrew ===”
brew update

echo “=== Installing PHP ===”
brew install php

echo “=== Installing MariaDB (optional DB layer) ===”
brew install mariadb
brew services start mariadb

echo “=== Creating OpenClaw directory on Desktop ===”
cd ~/Desktop

echo “Enter your GitHub username:”
read GHUSER

echo “=== Cloning OpenClaw ===”
git clone https://github.com/$GHUSER/OpenClaw.git

echo “=== Starting local PHP server ===”
cd OpenClaw
php -S localhost:8000