OpenClaw is everywhere right now. 145,000 GitHub stars. Peter Steinberger joining OpenAI. Kimi Claw shipping with 5,000 skills. Every dev with a Mac Mini and a WhatsApp number is building their own Jarvis.
And they should be. OpenClaw is the real deal — an AI agent that actually does things. It reads your files, runs your scripts, manages your calendar, controls your Sonos, dims your Hue lights. From a Telegram message. While you sleep.
But here's the thing nobody's talking about: OpenClaw can't touch iOS.
The iOS app is still in internal preview, and when it ships, it's a node — a camera, a canvas, a location beacon. It pairs to your Mac gateway over WebSocket and waits for instructions. It can't execute Shortcuts. It can't trigger HomeKit scenes. It can't export your HealthKit data or fire a workflow chain or tell you when to leave for the airport based on live traffic.
The existing Shortcuts skill on ClawHub? It generates .shortcut plist files. That's it. It writes XML. It doesn't run anything.
This is a massive gap. Apple's ecosystem isn't a niche — it's the dominant smart home, health, and personal automation platform for exactly the kind of people running OpenClaw. HomeKit controls the lights. HealthKit tracks the workouts. Shortcuts wires it all together. And none of it is accessible to your agent.
Until now.
Maurice OS: The iOS Execution Layer
Maurice OS turns a spare iPhone into a dedicated automation server. Every Apple Shortcut you register gets a REST endpoint. That's the unlock.
curl -X POST "http://192.168.1.42/api/run/Movie%20Night"
That command, fired from your OpenClaw agent on a Mac Mini, just triggered a HomeKit scene on an iPhone sitting on a shelf across the house. Lights dim. TV input switches. Sonos starts the soundtrack. No jailbreak. No cloud. No subscription.
Maurice doesn't replace OpenClaw. It completes it.
OpenClaw is the brain. It reasons, plans, remembers context, and manages conversations across WhatsApp, Telegram, and Discord. It decides what to do.
Maurice is the hands on iOS. It executes Shortcuts, runs workflow chains, manages schedules, handles failures, and exposes everything over HTTP. It does the thing on the platform OpenClaw can't reach.
Both run on dedicated hardware. Both serve web interfaces. Both speak HTTP and JSON. They were built for each other.
What Your Agent Gains
The moment you point OpenClaw at a Maurice instance, your agent unlocks the entire Apple ecosystem.
Control HomeKit
Every light, lock, thermostat, camera, garage door, and scene that Shortcuts can reach. Your agent says "turn off all the lights" and Maurice makes it happen on the actual Apple Home infrastructure.
Export HealthKit Data
Steps, heart rate, sleep analysis, workout summaries — all on demand. "How did I sleep this week?" becomes an answerable question. Your agent can pull your health data and actually reason about it.
Run Workflow Chains
Maurice chains Shortcuts together with configurable delays. A morning routine might turn on lights, wait 30 seconds, start the coffee maker, wait a minute, then play the news. One API call triggers the whole sequence.
Schedule with Precision
If you've tried iOS Shortcuts Automations for anything time-sensitive, you know they're unreliable. Maurice replaces that with a real scheduling engine: intervals as tight as every five minutes, filtered by day of week, within time windows, with pause/resume/skip from the API.
Get Live Travel Intelligence
GoTime calculates exactly when you need to leave for any event using live traffic from MapKit. Your agent can check api/gotime/next and proactively tell you "traffic is building on I-85, you should leave in 8 minutes" — or trigger a departure sequence automatically.
Handle Failures Gracefully
Full execution logging, retry policies with exponential backoff, auto-disable after repeated failures, and email alerts. When an automation breaks at 3 AM, Maurice handles it instead of hammering a broken Shortcut forever.
The Security Story
This matters more than usual right now. Cisco flagged OpenClaw as a security risk. Northeastern researchers called it a privacy nightmare. Fortune ran a piece on its "lethal trifecta" of data access, untrusted content, and autonomous action.
Maurice takes the opposite approach:
- Dedicated device. Maurice runs on a spare iPhone — not your primary phone, not your Mac with all your files. The attack surface is a single app on an isolated device.
- No filesystem access. Unlike an OpenClaw gateway with full shell access to your Mac, Maurice operates within Apple's Shortcuts sandbox. It can only do what Shortcuts can do, with the permissions you've granted.
- No cloud dependency. Everything stays on your local network. No accounts, no API keys, no tokens transmitted to third parties.
- No subscription. $9.99 once. No recurring billing, no data collection to justify a free tier.
When people ask "is OpenClaw safe?" — the answer for the iOS execution layer should be: it runs on a separate, sandboxed device that can only trigger the automations you've explicitly registered. That's a much easier security story to tell than "my AI has root on my MacBook."
The OpenClaw Skill
We've published a Maurice OS skill for ClawHub. Drop it in your skills directory and your agent immediately understands how to interact with Maurice — running Shortcuts, checking schedules, querying GoTime, monitoring execution logs, and triggering workflow chains.
The skill follows the standard AgentSkills format and works with OpenClaw, Claude Code, Cursor, and anything else that reads SKILL.md files.
npx clawdhub@latest install maurice-os
Set one environment variable:
export MAURICE_URL="http://
That's the entire setup. Your agent can now talk to iOS.
The Bigger Picture
I built Maurice because I wanted my home automation to actually work — reliably, privately, on hardware I already own. A spare iPhone is a computer that connects to WiFi, runs Shortcuts, has access to your entire Apple ecosystem, and gets software updates for years. Leaving it in a drawer is a waste.
But watching OpenClaw explode over the past three weeks made something click. The agentic AI movement is building the brain. They're building reasoning, memory, tool use, multi-step planning. What they're not building is the bridge to Apple's walled garden.
That bridge is a REST API on a device that already lives inside the garden. That bridge is Maurice.
If you're running OpenClaw and you have a spare iPhone, grab Maurice OS from the App Store and give your agent hands on iOS. It's $9.99 and it takes five minutes.
The brain is open source. The hands cost less than lunch.
Maurice OS is available on the App Store for $9.99. The OpenClaw skill is available on ClawHub. Read the full feature overview in Introducing Maurice OS.