Documentation Index
Fetch the complete documentation index at: https://bedrockdynamics.studio/docs/llms.txt
Use this file to discover all available pages before exploring further.
Roz Cloud is coming soon. The managed platform is under active development. For now, use Local Mode for single-machine development or Self-Hosting to run on your own infrastructure.
What Roz Cloud Will Provide
Roz Cloud is a managed deployment of the roz stack. You get the same open-source runtime with hosted infrastructure and additional features for teams and production fleets.- Managed infrastructure — Postgres, NATS, and the roz server are fully managed. No database administration, no JetStream tuning, no server provisioning.
- Provider gateway — Route LLM requests through a single endpoint. Bring your own API keys or use pooled access. Automatic fallback between providers when one is unavailable.
- Team management — Invite collaborators, manage roles, and scope API keys to specific robots or environments. Tenant isolation is enforced at the database layer via RLS.
- Fleet monitoring — Real-time dashboard for all connected robots. View agent sessions, WASM controller deployments, safety events, and heartbeat status across your fleet.
- Session history — Persistent logs of every agent turn, tool call, and controller deployment. Replay sessions for debugging or compliance.
Authentication
When Roz Cloud is available, you will authenticate via the CLI:gRPC Session Flow
Roz Cloud exposes the same gRPC interface as the self-hosted server. The session protocol:StartSession— Open a session. The server responds withSessionStartedcontaining the session ID and available capabilities.UserMessage— Send a natural language message. The server streams backTextDeltachunks as the agent reasons, followed byTurnCompletewhen the turn is finished.RegisterTools— Register additional MCP tools mid-session. The agent can then call these tools during subsequent turns.
Content-Type: application/grpc.