Multi-operator Claude Code: Hub-based architecture for multi-agent sessions

A Reddit user shared their architecture for scaling Claude Code beyond single-user sessions. The system uses a hub-and-spoke model: a central hub (self-hosted on Docker Hub or hosted) with four interface types.
Architecture overview
- Hub – central coordination point, available on Docker Hub for self-hosting.
- One-line MCP client – lightweight integration via Model Context Protocol.
- CLI – direct command-line access to the hub.
- Headless workers in Docker – containerized agents that can spawn more containers (agent calling agent).
- Small desktop supervisor – GUI for monitoring and controlling sessions.
What you get
- Multiple people attached to the same Claude Code session, watching the agent think in real time.
- Sessions that can route subtasks to each other across different repositories.
- Headless Claude instances in containers spawning child containers – enabling recursive agent workflows.
- Watch and intervene from a browser tab on your phone.
Details
The hub is the central component. The MCP client is a single-line integration. The desktop supervisor provides a lightweight UI for monitoring. All workers run headless in Docker, and they can spawn additional containers to offload subtasks. The system allows session routing across repos, so a complex multi-repo task can be broken up and delegated.
Repos and walkthrough are available on GitHub: https://github.com/clawborrator
This is essentially a plumbing layer for multi-operator Claude Code. If you're already using Claude Code and hitting the limits of single-user sessions, this architecture gives you a concrete pattern for scaling out.
📖 Read the full source: r/ClaudeAI
👀 See Also

Manual-Driven Development: A Method to Prevent Claude Code's Confident Divergence
Manual-Driven Development (MDD) is a method that addresses confident divergence in Claude Code, where the AI produces wrong code that passes its own tests. In a production audit, MDD found 190 issues, wrote 876 new tests in under 8 hours, and eliminated rule violations.

Pali v0.1: Open Source Memory Infrastructure for LLMs with Reproducible Benchmarks
Pali is an open source memory infrastructure for LLMs built in Go as a single binary with multi-tenant APIs, hybrid retrieval, and plug-and-play extensions. The v0.1 release includes a benchmark suite with reproducible results showing performance metrics for different configurations.

OpenClaw Skill Connects Agents to Knods.io UI for Workflow Creation
A developer has built an OpenClaw skill that enables agents to understand and create workflows within the Knods.io UI, allowing users to switch between specific agents like brand-specific ones instead of relying on Knods' built-in agent.

MegaClaw: Containerized OpenClaw Setup with Playwright and Homebrew
MegaClaw is a two-image Podman setup for OpenClaw that addresses common installation issues like permission errors and missing dependencies. It uses a multi-stage build with pre-installed Playwright and Homebrew, and bakes user configuration into a runtime image.