Milady Cloud Integration
Milady Cloud is Steward’s primary production deployment — managing 17+ AI agents across 6 nodes with on-chain transactions on Base mainnet.Architecture
Milady Cloud uses Steward as the governance layer between its agent containers and the outside world:- Steward API on port 3200 — agent CRUD, policy management, vault operations
- Steward Proxy on port 8080 — API credential injection (when enabled)
- Agent containers — ElizaOS-based agents connecting to Steward
How Provisioning Works
When a new agent is created on Milady Cloud:- Cloud provisioner calls
POST /agentsto create the agent in Steward - Wallet generated — encrypted EVM + Solana keypairs
- Policies applied — default policy template for the agent tier
- Agent token issued —
POST /agents/:id/tokengenerates a scoped JWT - Container created with only
STEWARD_PROXY_URLandSTEWARD_AGENT_TOKEN - Container starts — agent boots, connects to LLM via proxy
Production Stats
| Metric | Value |
|---|---|
| Tenants | 4 |
| Agents | 17+ |
| Transactions | 70+ |
| Nodes | 6 (milady-core-1 through milady-core-6) |
| Uptime | 8+ days continuous |
| On-chain proof | Base mainnet TX 0x8d7592b... |
Container Configuration
Milady Cloud agents use the@stwd/eliza-plugin for Steward integration. The plugin is baked into the container image:
172.18.0.1 address is the Docker bridge gateway, allowing containers to reach Steward running on the host.
Network Setup
Steward binds to0.0.0.0:3200 so Docker containers can reach it via the bridge network:
The
STEWARD_BIND_HOST=0.0.0.0 setting was a critical fix — without it, containers couldn’t reach Steward because it was only listening on localhost.Deploying on Your Own
To replicate the Milady Cloud setup:- Deploy Steward (Self-Hosting Guide)
- Create a tenant for your platform
- Set up the provisioning flow (agent creation → policy → token → container)
- Use the ElizaOS plugin or SDK in your agent containers
Related
- Architecture — System design overview
- Self-Hosting — Deploy your own instance
- ElizaOS Plugin — Agent integration
- Docker Guide — Container deployment