欢迎使用 FlowZap,快速、清晰、掌控的绘图应用。

OpenClaw 专用本地机器架构

OpenClaw 在专用 Mac Mini 或 homelab 服务器上的架构,包含持久化工作区、智能体状态以及远程消息访问。

完整 FlowZap 代码

User { # User (Phone / Laptop)
n1: circle label:"Start"
n2: rectangle label:"Send Telegram message"
n1.handle(right) -> n2.handle(left)
n2.handle(bottom) -> MacMini.n3.handle(top) [label="LAN / Tailscale"]
}
MacMini { # Dedicated Mac Mini
n3: rectangle label:"OpenClaw Gateway"
n4: rectangle label:"Workspace"
n5: rectangle label:"Agent Memory + State"
n3.handle(right) -> n4.handle(left)
n4.handle(right) -> n5.handle(left)
n3.handle(bottom) -> LLM.n6.handle(top) [label="API Request"]
}
LLM { # Commercial LLM API
n6: rectangle label:"Claude Opus 4.5"
n7: rectangle label:"Generate response"
n6.handle(right) -> n7.handle(left)
n7.handle(top) -> MacMini.n3.handle(bottom) [label="Response"]
}

相关模板

微服务 API 网关架构

微服务 API 网关架构图,展示请求路由、JWT 身份验证、速率限制、服务发现以及跨分布式后端服务的响应聚合。该模板模拟微服务生态系统中所有客户端流量的入口点,在请求到达内部服务之前执行安全策略。适合设计具有集中式横切关注点的可扩展 API 基础设施的平台工程师。

返回所有模板