rsclaw 2026.4.22

AI Agent Engine Compatible with OpenClaw
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
//! Gateway Wire Protocol - Frame Types
//!
//! OpenClaw uses a custom frame protocol over WebSocket:
//! - RequestFrame: {"type":"req","id":"...","method":"...","params":{}}
//! - ResponseFrame: {"type":"res","id":"...","ok":true,"payload":{}}
//! - EventFrame: {"type":"event","event":"...","payload":{},"seq":0}
//!
//! Reference:
//! /mnt/j/mickeylan/ai/openclaw/src/gateway/protocol/schema/frames.ts

use serde::{Deserialize, Serialize};

// ---------------------------------------------------------------------------
// Frame Types
// ---------------------------------------------------------------------------

/// Request frame (client → gateway)
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RequestFrame {
    #[serde(rename = "type")]
    pub frame_type: RequestFrameType,
    pub id: String,
    pub method: String,
    #[serde(default)]
    pub params: Option<serde_json::Value>,
}

/// Request frame type marker
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum RequestFrameType {
    Req,
}

/// Response frame (gateway → client)
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ResponseFrame {
    #[serde(rename = "type")]
    pub frame_type: ResponseFrameType,
    pub id: String,
    pub ok: bool,
    #[serde(default)]
    pub payload: Option<serde_json::Value>,
    #[serde(default)]
    pub error: Option<ErrorShape>,
}

/// Response frame type marker
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum ResponseFrameType {
    Res,
}

/// Event frame (gateway → client, unsolicited)
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct EventFrame {
    #[serde(rename = "type")]
    pub frame_type: EventFrameType,
    pub event: String,
    #[serde(default)]
    pub payload: Option<serde_json::Value>,
    #[serde(default)]
    pub seq: Option<u64>,
    #[serde(default)]
    pub state_version: Option<StateVersion>,
}

/// Event frame type marker
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum EventFrameType {
    Event,
}

/// Discriminated union of all frames
/// Uses untagged because each frame already has a `type` discriminator field
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
#[serde(rename_all = "lowercase")]
pub enum GatewayFrame {
    Req(RequestFrame),
    Res(ResponseFrame),
    Event(EventFrame),
}

// ---------------------------------------------------------------------------
// Error Types
// ---------------------------------------------------------------------------

/// Error shape
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ErrorShape {
    pub code: String,
    pub message: String,
    #[serde(default)]
    pub details: Option<serde_json::Value>,
    #[serde(default)]
    pub retryable: Option<bool>,
    #[serde(default)]
    pub retry_after_ms: Option<u64>,
}

/// Error codes
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ErrorCode {
    // Auth errors
    AuthRequired,
    AuthInvalid,
    AuthExpired,
    AuthMfaRequired,

    // Client errors (4xx)
    InvalidRequest,
    MethodNotFound,
    InvalidParams,

    // Server errors (5xx)
    InternalError,
    ServerBusy,
    ServerUnavailable,

    // Custom
    RateLimited,
    ProtocolMismatch,
    SessionNotFound,
    SessionBusy,
    AgentNotFound,
    AgentBusy,

    // Catch-all
    Unknown,
}

impl ErrorCode {
    pub fn as_str(&self) -> &'static str {
        match self {
            ErrorCode::AuthRequired => "auth.required",
            ErrorCode::AuthInvalid => "auth.invalid",
            ErrorCode::AuthExpired => "auth.expired",
            ErrorCode::AuthMfaRequired => "auth.mfa_required",
            ErrorCode::InvalidRequest => "invalid_request",
            ErrorCode::MethodNotFound => "method_not_found",
            ErrorCode::InvalidParams => "invalid_params",
            ErrorCode::InternalError => "internal_error",
            ErrorCode::ServerBusy => "server.busy",
            ErrorCode::ServerUnavailable => "server.unavailable",
            ErrorCode::RateLimited => "rate_limited",
            ErrorCode::ProtocolMismatch => "protocol.mismatch",
            ErrorCode::SessionNotFound => "session.not_found",
            ErrorCode::SessionBusy => "session.busy",
            ErrorCode::AgentNotFound => "agent.not_found",
            ErrorCode::AgentBusy => "agent.busy",
            ErrorCode::Unknown => "unknown",
        }
    }
}

impl std::fmt::Display for ErrorCode {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

// ---------------------------------------------------------------------------
// State & Snapshot
// ---------------------------------------------------------------------------

/// State version for optimistic concurrency
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StateVersion {
    pub version: u64,
    pub updated_at_ms: u64,
}

/// Snapshot of current state
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase", default)]
pub struct Snapshot {
    #[serde(default)]
    pub agents: Vec<AgentSummary>,
    #[serde(default)]
    pub sessions: Vec<SessionSummary>,
    #[serde(default)]
    pub channels: Vec<ChannelSummary>,
}

/// Agent summary in snapshot
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AgentSummary {
    pub id: String,
    #[serde(default)]
    pub label: Option<String>,
    pub status: String,
    #[serde(default)]
    pub model: Option<String>,
    #[serde(default)]
    pub session_id: Option<String>,
}

/// Session summary in snapshot
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SessionSummary {
    pub id: String,
    #[serde(default)]
    pub label: Option<String>,
    pub status: String,
    #[serde(default)]
    pub model: Option<String>,
}

/// Channel summary in snapshot
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ChannelSummary {
    pub id: String,
    pub kind: String,
    pub status: String,
}

// ---------------------------------------------------------------------------
// Connect Params & Hello
// ---------------------------------------------------------------------------

/// Connect request parameters
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ConnectParams {
    pub min_protocol: u32,
    pub max_protocol: u32,
    pub client: ClientInfo,
    #[serde(default)]
    pub caps: Option<Vec<String>>,
    #[serde(default)]
    pub commands: Option<Vec<String>>,
    #[serde(default)]
    pub permissions: Option<std::collections::HashMap<String, bool>>,
    #[serde(default)]
    pub path_env: Option<String>,
    #[serde(default)]
    pub role: Option<String>,
    #[serde(default)]
    pub scopes: Option<Vec<String>>,
    #[serde(default)]
    pub device: Option<DeviceAuth>,
    #[serde(default)]
    pub auth: Option<AuthCredentials>,
    #[serde(default)]
    pub locale: Option<String>,
    #[serde(default)]
    pub user_agent: Option<String>,
}

/// Client information
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ClientInfo {
    pub id: String,
    pub version: String,
    pub platform: String,
    pub mode: String,
    #[serde(default)]
    pub display_name: Option<String>,
    #[serde(default)]
    pub device_family: Option<String>,
    #[serde(default)]
    pub model_identifier: Option<String>,
    #[serde(default)]
    pub instance_id: Option<String>,
}

/// Device authentication payload
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DeviceAuth {
    pub id: String,
    pub public_key: String,
    pub signature: String,
    pub signed_at: u64,
    pub nonce: String,
}

/// Auth credentials
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AuthCredentials {
    #[serde(default)]
    pub token: Option<String>,
    #[serde(default)]
    pub bootstrap_token: Option<String>,
    #[serde(default)]
    pub device_token: Option<String>,
    #[serde(default)]
    pub password: Option<String>,
}

/// Hello OK response
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct HelloOk {
    #[serde(rename = "type")]
    pub frame_type: HelloOkType,
    pub protocol: u32,
    pub server: ServerInfo,
    pub features: Features,
    pub snapshot: Snapshot,
    #[serde(default)]
    pub canvas_host_url: Option<String>,
    #[serde(default)]
    pub auth: Option<IssuedAuth>,
    pub policy: Policy,
}

/// Hello OK type marker
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename = "type")]
pub enum HelloOkType {
    #[serde(rename = "hello-ok")]
    HelloOk,
}

/// Server info in hello
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerInfo {
    pub version: String,
    pub conn_id: String,
}

/// Supported features
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Features {
    pub methods: Vec<String>,
    pub events: Vec<String>,
}

/// Issued auth token
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct IssuedAuth {
    pub device_token: String,
    pub role: String,
    pub scopes: Vec<String>,
    #[serde(default)]
    pub issued_at_ms: Option<u64>,
}

/// Server policy
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Policy {
    pub max_payload: u64,
    pub max_buffered_bytes: u64,
    pub tick_interval_ms: u64,
}

// ---------------------------------------------------------------------------
// Client IDs & Modes
// ---------------------------------------------------------------------------

/// Client IDs
pub mod client_id {
    pub const GATEWAY_CLIENT: &str = "gateway:client";
    pub const ACP_CLIENT: &str = "acp:client";
    pub const WEBUI_CLIENT: &str = "webui:client";
    pub const CLI_CLIENT: &str = "cli:client";
}

/// Client modes
pub mod client_mode {
    pub const FRONTEND: &str = "frontend";
    pub const BACKEND: &str = "backend";
    pub const CLI: &str = "cli";
    pub const ACP: &str = "acp";
}

/// Default roles
pub mod role {
    pub const OPERATOR: &str = "operator";
    pub const ADMIN: &str = "operator.admin";
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_request_frame_serialization() {
        let frame = RequestFrame {
            frame_type: RequestFrameType::Req,
            id: "req-1".to_string(),
            method: "agent.spawn".to_string(),
            params: Some(serde_json::json!({"cwd": "/tmp"})),
        };

        let json = serde_json::to_string(&frame).unwrap();
        assert!(json.contains(r#""type":"req""#));
        assert!(json.contains(r#""id":"req-1""#));
        assert!(json.contains(r#""method":"agent.spawn""#));

        let parsed: RequestFrame = serde_json::from_str(&json).unwrap();
        assert_eq!(parsed.id, "req-1");
        assert_eq!(parsed.method, "agent.spawn");
    }

    #[test]
    fn test_response_frame_serialization() {
        let frame = ResponseFrame {
            frame_type: ResponseFrameType::Res,
            id: "req-1".to_string(),
            ok: true,
            payload: Some(serde_json::json!({"agentId": "a1", "sessionId": "s1"})),
            error: None,
        };

        let json = serde_json::to_string(&frame).unwrap();
        assert!(json.contains(r#""type":"res""#));
        assert!(json.contains(r#""ok":true"#));

        let parsed: ResponseFrame = serde_json::from_str(&json).unwrap();
        assert!(parsed.ok);
    }

    #[test]
    fn test_event_frame_serialization() {
        let frame = EventFrame {
            frame_type: EventFrameType::Event,
            event: "session.message".to_string(),
            payload: Some(serde_json::json!({"content": "hello"})),
            seq: Some(1),
            state_version: None,
        };

        let json = serde_json::to_string(&frame).unwrap();
        assert!(json.contains(r#""type":"event""#));
        assert!(json.contains(r#""event":"session.message""#));
        assert!(json.contains(r#""seq":1"#));

        let parsed: EventFrame = serde_json::from_str(&json).unwrap();
        assert_eq!(parsed.event, "session.message");
    }

    #[test]
    fn test_gateway_frame_parsing() {
        let json = r#"{"type":"req","id":"1","method":"test","params":{}}"#;
        let frame: GatewayFrame = serde_json::from_str(json).unwrap();
        match frame {
            GatewayFrame::Req(r) => {
                assert_eq!(r.id, "1");
                assert_eq!(r.method, "test");
            }
            _ => panic!("Expected Req frame"),
        }

        let json = r#"{"type":"event","event":"test.event","seq":1}"#;
        let frame: GatewayFrame = serde_json::from_str(json).unwrap();
        match frame {
            GatewayFrame::Event(e) => {
                assert_eq!(e.event, "test.event");
                assert_eq!(e.seq, Some(1));
            }
            _ => panic!("Expected Event frame"),
        }
    }

    #[test]
    fn test_connect_params() {
        let params = ConnectParams {
            min_protocol: 1,
            max_protocol: 10,
            client: ClientInfo {
                id: "rsclaw:client".to_string(),
                version: "0.1.0".to_string(),
                platform: "linux".to_string(),
                mode: "cli".to_string(),
                display_name: Some("rsclaw".to_string()),
                device_family: None,
                model_identifier: None,
                instance_id: None,
            },
            caps: Some(vec!["agent.spawn".to_string()]),
            commands: None,
            permissions: None,
            path_env: None,
            role: Some("operator".to_string()),
            scopes: Some(vec!["operator.admin".to_string()]),
            device: None,
            auth: Some(AuthCredentials {
                token: Some("test-token".to_string()),
                bootstrap_token: None,
                device_token: None,
                password: None,
            }),
            locale: None,
            user_agent: None,
        };

        let json = serde_json::to_string(&params).unwrap();
        assert!(json.contains(r#""minProtocol":1"#));
        assert!(json.contains(r#""maxProtocol":10"#));
        assert!(json.contains(r#""id":"rsclaw:client""#));
    }
}