A comprehensive deployment guide for running Openclaw Skills on a dedicated Mac Mini server for 24/7 AI availability.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install mac-mini-server
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install mac-mini-server using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
This skill provides a production-ready blueprint for hosting Openclaw Skills on Apple Silicon hardware. It focuses on turning a Mac Mini into a high-performance, always-on AI gateway that balances local model inference with cloud API efficiency. By following this guide, developers can move away from temporary local setups to a persistent server environment capable of handling complex autonomous tasks.
The guide covers everything from choosing the right M4 hardware specifications to configuring macOS for server-grade reliability. By leveraging containerization and secure tunneling, it ensures that your Openclaw Skills remain accessible, secure, and resilient against power failures or reboots.
Configure your macOS energy settings for server duty:
sudo pmset -a sleep 0 disksleep 0 displaysleep 0 autorestart 1
Install the necessary environment using Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install --cask docker tailscale
brew install git node pnpm
Clone the repository and build the Docker image for your Openclaw Skills:
git clone https://github.com/openclaw/openclaw.git
cd openclaw
pnpm install && pnpm build
docker build -t openclaw:latest .
Launch the service:
docker compose up -d
The skill manages configuration and persistence through a structured filesystem approach:
| Component | Path | Description |
|---|---|---|
| Configuration | ~/.openclaw/openclaw.json |
Stores API keys, Telegram tokens, and channel settings for Openclaw Skills. |
| Container Logic | docker-compose.yml |
Manages environment variables, volume mappings, and restart policies. |
| Service Metadata | ~/Library/LaunchAgents/com.openclaw.gateway.plist |
XML configuration defining the auto-start behavior on macOS boot. |
| Monitoring Logs | /tmp/openclaw-monitor.log |
Captures health check results and automated restart events. |
Loading
A Python-powered interface to manage Loom video recordings, transcripts, and workspace folders via the official Developer API.

An automated LLM-as-a-Judge evaluation system for scoring AI response quality, accuracy, and hallucination using Langfuse.

An automated LLM-as-a-Judge system that scores Langfuse traces for quality, accuracy, and hallucination detection.

Manage real-time voice and video infrastructure for AI agents using LiveKit WebRTC.

A high-performance Python tool for managing Make automation scenarios, executions, connections, and data stores through a zero-dependency API interface.

A professional-grade Mercury banking integration for AI agents that automates transaction tracking, cash flow analysis, and financial categorization.








































