Run OpenClaw with a Local LLM on macOS – Guide for 16–24GB RAM

A new guide walks through setting up OpenClaw with a local LLM on macOS, specifically targeting machines with 16–24GB RAM. The author tested a quantized version of Qwen 3.5 configured for OpenClaw, and includes a test skill to confirm everything is working.
Setup Overview
- Model: Qwen 3.5 (quantized) – chosen to fit within 16–24GB RAM while providing decent reasoning capability.
- Platform: macOS (tested on Mac Mini with 16–24GB).
- Key step: Configure OpenClaw to use the local model endpoint (typically via Ollama or llama.cpp). The guide provides specific config file edits.
Test Skill
To validate the setup, the author created a test skill that calls the local model and returns a known response. If the skill executes correctly, your local LLM is fully integrated with OpenClaw.
Why Local LLM?
Running an LLM locally avoids API costs and latency, keeps code and prompts on-device, and works offline. For OpenClaw users with Apple Silicon Macs, quantized models like Qwen 3.5 are a practical compromise between accuracy and memory.
Next Steps
If the test skill fails, check your model server (Ollama) is running and the OpenClaw config points to the correct URL (http://localhost:11434 for Ollama). Adjust context window size if needed to fit memory.
📖 Read the full source: r/openclaw
👀 See Also

SOUL.md rules drift in long AI agent sessions and how to fix it
SOUL.md rules work perfectly for the first 10-15 messages but start drifting around message 20-30 as conversation context overrides the initial system prompt. The solution is to use /new more aggressively to reset sessions before each distinct task.

Cost-Effective OpenClaw Multi-Agent Setup Using Subscription Models
A Reddit user describes routing all OpenClaw multi-agent operations through existing $200 Anthropic Pro Max and $200 ChatGPT OpenAI Codex subscriptions instead of raw API calls, using cheaper Anthropic models for simple agents and more complex models for others.

OpenClaw Multi-Agent Playbook: 7 Isolated Agents for 5/Month
Complete architecture guide for running specialized AI agents with focused memory, least-privilege permissions, and smart model routing.

OpenClaw v2.0 update requires manual checks before installation
OpenClaw's latest update includes 12 breaking changes, a new plugin system, and 30+ security patches. The update will silently break setups if users run npm update without first checking environment variables, state directories, and browser automation configurations.