20. Gateway protokoli (WebSocket)
- Gateway WS protokoli OpenClaw uchun yagona boshqaruv tekisligi + tugun transporti hisoblanadi. 22. Barcha mijozlar (CLI, veb UI, macOS ilovasi, iOS/Android tugunlari, boshqaruvsiz tugunlar) WebSocket orqali ulanadi va qo‘l siqish vaqtida o‘z rol + qamrovini e’lon qiladi.
23. Transport
-
- WebSocket, JSON yuklamali matnli freymlar.
-
- Birinchi freym majburiy ravishda
connectso‘rovi bo‘lishi kerak.
- Birinchi freym majburiy ravishda
26. Qo‘l siqish (connect)
- Gateway → Mijoz (oldindan ulanish sinovi):
- Mijoz → Gateway:
- Gateway → Mijoz:
- Qurilma tokeni chiqarilganda,
hello-okshuningdek quyidagilarni o‘z ichiga oladi:
35. Tugun misoli
37. Freymlash
-
- So‘rov:
{type:"req", id, method, params}
- So‘rov:
-
- Javob:
{type:"res", id, ok, payload|error}
- Javob:
-
- Hodisa:
{type:"event", event, payload, seq?, stateVersion?}
- Hodisa:
- Yon ta’sirga ega metodlar idempotentlik kalitlarini talab qiladi (sxemaga qarang).
42. Rollar + qamrovlar
43. Rollar
-
operator= boshqaruv tekisligi mijozi (CLI/UI/avtomatlashtirish).
-
node= imkoniyatlar xosti (kamera/ekran/kanvas/system.run).
46. Qamrovlar (operator)
- Umumiy qamrovlar:
operator.readoperator.writeoperator.adminoperator.approvalsoperator.pairing
Caps/commands/permissions (node)
Tugunlar ulanish vaqtida imkoniyat da’volarini e’lon qiladi:caps: yuqori darajadagi imkoniyat toifalari.commands: invoke uchun ruxsat etilgan buyruqlar ro‘yxati.permissions: mayda (granular) sozlamalar (masalan,screen.record,camera.capture).
Mavjudlik
system-presencequrilma identifikatoriga ko‘ra kalitlangan yozuvlarni qaytaradi.- Mavjudlik yozuvlari
deviceId,rolesvascopesni o‘z ichiga oladi, shunda UIlar har bir qurilma uchun bitta qatorni ko‘rsatishi mumkin hatto u operator va node sifatida bir vaqtda ulangan bo‘lsa ham.
Node helper methods
- Nodes may call
skills.binsto fetch the current list of skill executables for auto-allow checks.
Exec approvals
- When an exec request needs approval, the gateway broadcasts
exec.approval.requested. - Operator clients resolve by calling
exec.approval.resolve(requiresoperator.approvalsscope).
Versioning
PROTOCOL_VERSIONlives insrc/gateway/protocol/schema.ts.- Clients send
minProtocol+maxProtocol; the server rejects mismatches. - Schemas + models are generated from TypeBox definitions:
pnpm protocol:genpnpm protocol:gen:swiftpnpm protocol:check
Auth
- If
OPENCLAW_GATEWAY_TOKEN(or--token) is set,connect.params.auth.tokenmust match or the socket is closed. - After pairing, the Gateway issues a device token scoped to the connection
role + scopes. It is returned in
hello-ok.auth.deviceTokenand should be persisted by the client for future connects. - Device tokens can be rotated/revoked via
device.token.rotateanddevice.token.revoke(requiresoperator.pairingscope).
Device identity + pairing
- Nodes should include a stable device identity (
device.id) derived from a keypair fingerprint. - Gateways issue tokens per device + role.
- Pairing approvals are required for new device IDs unless local auto-approval is enabled.
- Local connects include loopback and the gateway host’s own tailnet address (so same‑host tailnet binds can still auto‑approve).
- All WS clients must include
deviceidentity duringconnect(operator + node). Control UI can omit it only whengateway.controlUi.allowInsecureAuthis enabled (orgateway.controlUi.dangerouslyDisableDeviceAuthfor break-glass use). - Non-local connections must sign the server-provided
connect.challengenonce.
TLS + pinning
- TLS is supported for WS connections.
- Clients may optionally pin the gateway cert fingerprint (see
gateway.tlsconfig plusgateway.remote.tlsFingerprintor CLI--tls-fingerprint).
Scope
This protocol exposes the full gateway API (status, channels, models, chat, agent, sessions, nodes, approvals, etc.). The exact surface is defined by the TypeBox schemas insrc/gateway/protocol/schema.ts.