OpenClaw Reference Setup: 6-Week Production Use Case with Security Architecture

✍️ OpenClawRadar📅 Published: March 28, 2026🔗 Source
OpenClaw Reference Setup: 6-Week Production Use Case with Security Architecture
Ad

Production Setup Details

This is a real-world OpenClaw implementation running continuously for 6 weeks on dedicated hardware. The user isn't a developer but built this over evenings and weekends while working in industrial engineering at a chemical plant.

Hardware and Core Configuration

  • Hardware: Mac Mini M4 with 24GB RAM, dedicated
  • Model cascade: Claude Sonnet → MiniMax → Qwen local (3 tiers)
  • Custom tools: 15+
  • Cron jobs: 12 running daily
  • Uptime: 6 weeks continuous
  • Cost: ~$30-50/month
  • Daily messages: 20-50

Daily Functions

  • Morning briefing: Every day at 5:08am with weather, calendar, emails, market data, reminders, and a vocabulary word. Assembled locally from cached sources.
  • Invoice scanning: Reads GMX, iCloud and Gmail inboxes, downloads PDF invoices, categorises them with AI, and files them. First run processed 61 PDFs sorted into 11 categories in one pass.
  • Voice messages: Transcribes locally with Whisper (no cloud), processes, and responds. No audio ever leaves the machine.
  • iCloud bridge: Bidirectional file sync. Files dropped into a folder on iPhone get picked up by the agent, which can drop files back the same way.
Ad

Security Architecture

The creator emphasizes most setups have exec.security: "off", which is vulnerable to prompt injection. This implementation includes:

  • Exec approvals with ~57 allowlisted binaries
  • HTTP egress locked to a domain allowlist (no curl to unknown URLs)
  • SMTP egress locked to an approved recipient list
  • File integrity monitoring on 30+ critical files with SHA256 checksums
  • Injection detection on every external input — email, calendar, web, voice
  • Memory validation before every write (no poisoning via email content)
  • Purple Team audit with MITRE ATT&CK mapping

Security score improved from 3/10 to 7.5/10.

Lessons Learned

  • sandbox.mode: "all" silently denies every exec call with no error or log
  • Memory explodes without hard limits. Implemented 200-line cap on daily logs plus weekly distillation into long-term memory
  • Shell pipes always trigger approvals even when every binary is allowlisted. Solution: wrapper scripts
  • exec-approvals.json must NOT be immutable as OpenClaw writes to it on every exec

Repository and Licensing

Everything is open-sourced at https://github.com/Atlas-Cowork/openclaw-reference-setup under MIT license. Includes templates, security architecture, tool catalog, and cron configs.

📖 Read the full source: r/openclaw

Ad

👀 See Also

Using Claude Code to Automate AI Research Experiments for 12 Hours
Use Cases

Using Claude Code to Automate AI Research Experiments for 12 Hours

A developer used Claude Code to run automated AI research experiments for 12 hours, tuning a continual learning framework to maximize model compliance to preference verifiers. The system ran 9 experiments, fixed a model collapse bug, and achieved 100% compliance from 0%.

OpenClawRadar
Developer Combines Claude Code and Codex for Better AI Coding Workflow
Use Cases

Developer Combines Claude Code and Codex for Better AI Coding Workflow

A developer reports using Claude Code as an orchestrator and Codex as a worker, finding that Codex's faster coding speed with GPT 5.4 is offset by poor explanations that require multiple readings to understand what changed.

OpenClawRadar
OpenClaw YouTube Channel Management Test with Comment Agent Interaction
Use Cases

OpenClaw YouTube Channel Management Test with Comment Agent Interaction

A developer tested OpenClaw's ability to manage a YouTube channel, including daily video generation and automated commenting. The system handled topic selection, scripting, voiceover, thumbnails, effects, uploading, and scheduling, but encountered an endless conversation loop when a comment bot engaged with the automated reply agent.

OpenClawRadar
Automating Recruiting Workflows with Claude Desktop: A Case Study
Use Cases

Automating Recruiting Workflows with Claude Desktop: A Case Study

A developer automated the first layer of recruiting using Claude Desktop, Chrome with browser extension, and Google Calendar integration, handling resume screening and interview scheduling every two hours on a Windows workstation.

OpenClawRadar