Running OpenClaw for multiple users requires isolation and security layers

A developer shared their experience running OpenClaw for multiple users, highlighting that while OpenClaw works well as a personal assistant for single users, scaling to multiple users introduces significant security and operational challenges.
Key Challenges with Multi-User OpenClaw
The developer identified several specific problems when trying to run OpenClaw for multiple users:
- Isolating users properly
- Keeping secrets out of the runtime
- Giving agents files without sharing a real filesystem
- Exposing bash without giving away the machine
- Keeping state while not having a 24/7 running instance
The developer noted that Peter (likely OpenClaw creator) has said OpenClaw is meant more like a personal assistant, not a multi-user business system.
The Infrastructure Solution
To address these challenges, the developer built a thin infrastructure layer around OpenClaw with these components:
- One gateway for Slack, Telegram, WhatsApp, and Discord integration
- One isolated worker per user/thread
- Virtual bash (just-bash sandboxing) instead of broad host access
- A virtual filesystem per worker
- Secrets kept in the gateway, not inside workers, with outbound traffic proxied/filtered
- Persistent state with scale-to-zero workers
The developer used this setup for wedding planning, tax return help, prenup/agreement drafting, and small business administration workflows. They also set up OpenClaw for two friends getting married, though maintenance and upgrading proved challenging.
Open Source Project
The solution is available as a fully open-source project at https://github.com/lobu-ai/lobu.
The developer notes that getting OpenClaw to run wasn't the hard part—the challenge was making it usable for multiple people without creating security and operational problems.
📖 Read the full source: r/openclaw
👀 See Also

Claude Project for Daily Planning with Todoist and Google Calendar Integration
A developer built a Claude Project that functions as a full-time management assistant connected to Todoist and Google Calendar. The system plans daily schedules, tracks habits, and runs reviews using three specific roles: Task Auditor, Habit Scheduler, and Schedule Composer.

Recursive AI Agent System Builds and Improves Its Own Website
A developer built a website using Claude Code that generates its own newsletter content, then uses that content to identify gaps and create an improvement backlog. The system runs on a weekly pipeline deployed on Vercel.

Automating Claude Code workflows with autoloop system for 10x throughput
A developer built an autoloop system that automates the plan-implement-test cycle with Claude Code and Codex CLI, achieving 10x throughput and producing a 20k-line production-ready app in just over an hour.

OpenClaw AI Agent Finds Federal Job Match and Creates Daily Automation
A user tasked their OpenClaw AI agent with finding a federal job on usajobs.gov that matched their salary requirements and preserved special retirement benefits, resulting in a specific job description match and a daily notification automation.