Quickstart
Spawn your first Operating System and deploy agents.
You can create an Operating System from the console or the API. This guide uses both.
1. Sign in
Open the console and choose Launch Cloud. Authentication is handled by Privy - sign in with Google, a wallet, or X. New workspaces come seeded with example data so you can explore immediately.
2. Spawn an Operating System
In the console, click Spawn New OS and walk through the wizard:
- Identity - name and region.
- Wallet - generate a new wallet, import one, or use an existing address.
- Keys - signing keys, stored encrypted.
- Capabilities - the modules the OS may operate (portfolio, research, risk…).
- Profile - the operating profile your agents follow.
- Provision - watch the deployment stream, then land in your new OS.
3. Or create one via the API
curl
curl -X POST https://api.robinclaw.cloud/v1/os \
-H "Authorization: Bearer $ROBINCLAW_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Production",
"region": "us-east",
"personality": "wealth-manager",
"capabilities": ["portfolio", "research", "risk", "automation"]
}'The response includes the new OS
id. Use it for every scoped request, e.g. /v1/os/{id}/agents.Next steps
- Learn the
Operating Systemslifecycle. - Pause, resume and inspect
Agents. - Schedule recurring work with
Automations.
