awaken-server 0.6.0

Multi-protocol HTTP server with SSE, mailbox, and protocol adapters for Awaken
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
use awaken_server_contract::contract::event::AgentEvent;
use awaken_server_contract::contract::event_store::{
    AppendOptions, CanonicalEventDraft, CanonicalEventKind, EventScope, EventVisibility,
};
use awaken_server_contract::contract::mailbox::{RunDispatch, RunDispatchStatus};
use awaken_server_contract::contract::message::{Message, Role, Visibility};
use awaken_server_contract::contract::storage::{RunQuery, RunRecord, StorageError};
use awaken_server_contract::contract::suspension::ToolCallResume;
use serde_json::json;

use super::{Mailbox, MailboxError, dispatch_status_label};

impl Mailbox {
    pub(super) async fn record_mailbox_dispatch_event(
        &self,
        event_kind: &'static str,
        dispatch: &RunDispatch,
    ) {
        self.record_mailbox_dispatch_event_inner(event_kind, dispatch, None, None, None)
            .await;
    }

    pub(super) async fn record_mailbox_timeout(
        &self,
        dispatch: &RunDispatch,
        reason: &'static str,
        timeout_ms: u64,
    ) {
        self.record_mailbox_dispatch_event_inner(
            "MailboxTimeout",
            dispatch,
            Some(reason),
            None,
            Some(timeout_ms),
        )
        .await;
    }

    pub(super) async fn record_mailbox_submit_failed(
        &self,
        dispatch: &RunDispatch,
        error: &StorageError,
    ) {
        self.record_mailbox_dispatch_event_inner(
            "MailboxSubmitFailed",
            dispatch,
            Some("enqueue_failed"),
            Some(error.to_string()),
            None,
        )
        .await;
    }

    pub(super) async fn record_run_errored(&self, dispatch: &RunDispatch, error: &str) {
        let Some(publisher) = &self.server_event_publisher else {
            return;
        };
        let origin = self.server_event_origin.clone();
        let payload = match serde_json::to_value(AgentEvent::RunFinish {
            thread_id: dispatch.thread_id().clone(),
            run_id: dispatch.run_id().clone(),
            identity: None,
            result: None,
            termination: awaken_server_contract::contract::lifecycle::TerminationReason::Error(
                error.to_string(),
            ),
        }) {
            Ok(payload) => payload,
            Err(error) => {
                tracing::error!(error = %error, dispatch_id = %dispatch.dispatch_id(), "invalid run errored event payload");
                return;
            }
        };
        let mut draft = match CanonicalEventDraft::new(
            vec![
                EventScope::thread(dispatch.thread_id().clone()),
                EventScope::run(dispatch.run_id().clone()),
            ],
            match CanonicalEventKind::new("RunErrored") {
                Ok(kind) => kind,
                Err(error) => {
                    tracing::error!(error = %error, "invalid run errored event kind");
                    return;
                }
            },
            payload,
            origin.clone(),
        ) {
            Ok(draft) => draft,
            Err(error) => {
                tracing::error!(error = %error, dispatch_id = %dispatch.dispatch_id(), "invalid run errored event draft");
                return;
            }
        };
        draft.visibility = EventVisibility::Public;
        draft.correlation_id = Some(dispatch.dispatch_id().clone());
        let options = AppendOptions {
            writer_id: Some("mailbox".to_string()),
            idempotency_key: Some(format!(
                "RunErrored/{}/{}",
                dispatch.dispatch_id(),
                dispatch.attempt_count()
            )),
            expected_prior_cursors: Default::default(),
        };
        if let Err(error) = publisher.publish(draft, options).await {
            tracing::error!(error = %error, dispatch_id = %dispatch.dispatch_id(), "failed to record run errored event");
        }
    }

    pub(super) async fn record_mailbox_resume_failed(
        &self,
        dispatch: &RunDispatch,
        decisions: &[(String, ToolCallResume)],
        reason: &'static str,
        error: &StorageError,
    ) {
        let Some(publisher) = &self.server_event_publisher else {
            return;
        };
        let origin = self.server_event_origin.clone();
        let decisions = decisions
            .iter()
            .map(|(tool_call_id, resume)| {
                json!({
                    "tool_call_id": tool_call_id,
                    "decision_id": resume.decision_id,
                    "action": &resume.action,
                    "result": &resume.result,
                    "resume_updated_at": resume.updated_at,
                })
            })
            .collect::<Vec<_>>();
        let payload = json!({
            "thread_id": dispatch.thread_id(),
            "run_id": dispatch.run_id(),
            "dispatch_id": dispatch.dispatch_id(),
            "dispatch_epoch": dispatch.dispatch_epoch(),
            "attempt_count": dispatch.attempt_count(),
            "status": dispatch_status_label(dispatch.status()),
            "reason": reason,
            "error": error.to_string(),
            "decisions": decisions,
        });
        let mut draft = match CanonicalEventDraft::new(
            vec![
                EventScope::thread(dispatch.thread_id().clone()),
                EventScope::run(dispatch.run_id().clone()),
            ],
            match CanonicalEventKind::new("MailboxResumeFailed") {
                Ok(kind) => kind,
                Err(error) => {
                    tracing::error!(error = %error, "invalid mailbox resume failed event kind");
                    return;
                }
            },
            payload,
            origin.clone(),
        ) {
            Ok(draft) => draft,
            Err(error) => {
                tracing::error!(error = %error, dispatch_id = %dispatch.dispatch_id(), "invalid mailbox resume failed event draft");
                return;
            }
        };
        draft.visibility = EventVisibility::Public;
        draft.correlation_id = Some(dispatch.dispatch_id().clone());
        let options = AppendOptions {
            writer_id: Some("mailbox".to_string()),
            idempotency_key: Some(format!(
                "MailboxResumeFailed/{}/{}",
                dispatch.dispatch_id(),
                dispatch.attempt_count()
            )),
            expected_prior_cursors: Default::default(),
        };
        if let Err(error) = publisher.publish(draft, options).await {
            tracing::error!(error = %error, dispatch_id = %dispatch.dispatch_id(), "failed to record mailbox resume failed event");
        }
    }

    pub(super) async fn record_run_rescheduled_dispatch(
        &self,
        dispatch: &RunDispatch,
        reason: &'static str,
    ) {
        if dispatch.status() == RunDispatchStatus::Queued {
            self.record_mailbox_dispatch_event_inner(
                "RunRescheduled",
                dispatch,
                Some(reason),
                None,
                None,
            )
            .await;
        }
    }

    pub(super) async fn record_run_rescheduled_dispatch_by_id(
        &self,
        dispatch_id: &str,
        reason: &'static str,
    ) {
        match self.store.load_dispatch(dispatch_id).await {
            Ok(Some(dispatch)) => {
                self.record_run_rescheduled_dispatch(&dispatch, reason)
                    .await;
            }
            Ok(None) => {}
            Err(error) => {
                tracing::warn!(dispatch_id, error = %error, "failed to load rescheduled dispatch");
            }
        }
    }

    async fn record_mailbox_dispatch_event_inner(
        &self,
        event_kind: &'static str,
        dispatch: &RunDispatch,
        reason: Option<&'static str>,
        error: Option<String>,
        timeout_ms: Option<u64>,
    ) {
        let Some(publisher) = &self.server_event_publisher else {
            return;
        };
        let origin = self.server_event_origin.clone();
        let mut payload = json!({
            "thread_id": dispatch.thread_id(),
            "run_id": dispatch.run_id(),
            "dispatch_id": dispatch.dispatch_id(),
            "dispatch_epoch": dispatch.dispatch_epoch(),
            "attempt_count": dispatch.attempt_count(),
            "status": dispatch_status_label(dispatch.status()),
            "available_at": dispatch.available_at(),
            "created_at": dispatch.created_at(),
            "updated_at": dispatch.updated_at(),
        });
        if let Some(reason) = reason
            && let Some(payload) = payload.as_object_mut()
        {
            payload.insert("reason".to_string(), json!(reason));
        }
        if let Some(error) = error
            && let Some(payload) = payload.as_object_mut()
        {
            payload.insert("error".to_string(), json!(error));
        }
        if let Some(timeout_ms) = timeout_ms
            && let Some(payload) = payload.as_object_mut()
        {
            payload.insert("timeout_ms".to_string(), json!(timeout_ms));
        }
        let mut draft = match CanonicalEventDraft::new(
            vec![
                EventScope::thread(dispatch.thread_id().clone()),
                EventScope::run(dispatch.run_id().clone()),
            ],
            match CanonicalEventKind::new(event_kind) {
                Ok(kind) => kind,
                Err(error) => {
                    tracing::error!(error = %error, event_kind, "invalid mailbox event kind");
                    return;
                }
            },
            payload,
            origin.clone(),
        ) {
            Ok(draft) => draft,
            Err(error) => {
                tracing::error!(error = %error, event_kind, dispatch_id = %dispatch.dispatch_id(), "invalid mailbox event draft");
                return;
            }
        };
        draft.visibility = EventVisibility::Public;
        draft.correlation_id = Some(dispatch.dispatch_id().clone());
        let options = AppendOptions {
            writer_id: Some("mailbox".to_string()),
            idempotency_key: Some(format!(
                "{}/{}/{}",
                event_kind,
                dispatch.dispatch_id(),
                dispatch.attempt_count()
            )),
            expected_prior_cursors: Default::default(),
        };
        if let Err(error) = publisher.publish(draft, options).await {
            tracing::error!(error = %error, event_kind, dispatch_id = %dispatch.dispatch_id(), "failed to record mailbox event");
        }
    }

    /// Append the canonical checkpoint events (one `MessageCommitted` per new
    /// seq plus one `ThreadMessagesCheckpointed`) for a freeze/commit.
    ///
    /// ADR-0042 D4 requires messages + run record + canonical events to share a
    /// logical boundary. The freeze transaction commits messages + run
    /// atomically in the store crate, but these events are published through the
    /// advisory outbox publisher, which that transaction cannot reach. Callers
    /// that have already committed state must treat failures here as repairable:
    /// `repair_thread_message_checkpoint_events` re-derives missing events from
    /// committed run records.
    pub(super) async fn record_thread_message_checkpoint_events(
        &self,
        thread_id: &str,
        run_id: &str,
        messages: &[Message],
        first_new_seq: u64,
        last_new_seq: u64,
    ) -> Result<(), MailboxError> {
        if first_new_seq > last_new_seq {
            return Ok(());
        }
        validate_checkpoint_event_range(thread_id, run_id, messages, first_new_seq, last_new_seq)?;
        for seq in first_new_seq..=last_new_seq {
            self.record_message_committed(thread_id, run_id, messages, seq)
                .await?;
        }
        self.record_thread_messages_checkpointed(
            thread_id,
            run_id,
            messages,
            first_new_seq,
            last_new_seq,
        )
        .await?;
        Ok(())
    }

    pub(super) async fn repair_thread_message_checkpoint_events(
        &self,
    ) -> Result<usize, MailboxError> {
        if self.server_event_publisher.is_none() {
            return Ok(0);
        }

        let mut offset = 0usize;
        let limit = 100usize;
        let mut repaired = 0usize;
        loop {
            let page = self
                .run_store
                .list_runs(&RunQuery {
                    offset,
                    limit,
                    thread_id: None,
                    status: None,
                    id_prefix: None,
                })
                .await?;
            for run in &page.items {
                let Some(input) = &run.input else {
                    continue;
                };
                let Some(range) = input.range else {
                    continue;
                };
                let messages = self
                    .run_store
                    .load_messages(&input.thread_id)
                    .await?
                    .unwrap_or_default();
                self.record_thread_message_checkpoint_events(
                    &input.thread_id,
                    &run.run_id,
                    &messages,
                    range.from_seq,
                    range.to_seq,
                )
                .await?;
                repaired += range.len() as usize;
            }
            if !page.has_more {
                break;
            }
            offset += limit;
        }
        Ok(repaired)
    }

    pub(crate) async fn record_mailbox_decision_received_for_run(
        &self,
        run: &RunRecord,
        tool_call_id: &str,
        resume: &ToolCallResume,
        delivery_path: &'static str,
    ) {
        self.record_mailbox_decision_received(
            &run.thread_id,
            &run.run_id,
            run.dispatch_id.as_deref(),
            tool_call_id,
            resume,
            delivery_path,
        )
        .await;
    }

    pub(super) async fn record_mailbox_decision_received_for_dispatch(
        &self,
        dispatch: &RunDispatch,
        tool_call_id: &str,
        resume: &ToolCallResume,
        delivery_path: &'static str,
    ) {
        self.record_mailbox_decision_received(
            &dispatch.thread_id(),
            &dispatch.run_id(),
            Some(&dispatch.dispatch_id()),
            tool_call_id,
            resume,
            delivery_path,
        )
        .await;
    }

    pub(super) async fn record_mailbox_decision_received_for_id(
        &self,
        id: &str,
        tool_call_id: &str,
        resume: &ToolCallResume,
        delivery_path: &'static str,
    ) {
        match self.store.load_dispatch(id).await {
            Ok(Some(dispatch)) => {
                self.record_mailbox_decision_received_for_dispatch(
                    &dispatch,
                    tool_call_id,
                    resume,
                    delivery_path,
                )
                .await;
                return;
            }
            Ok(None) => {}
            Err(error) => {
                tracing::warn!(id, error = %error, "failed to load dispatch for mailbox decision event");
            }
        }
        let run = match self.run_store.load_run(id).await {
            Ok(Some(run)) => Some(run),
            Ok(None) => match self.run_store.latest_run(id).await {
                Ok(run) => run,
                Err(error) => {
                    tracing::warn!(id, error = %error, "failed to load latest run for mailbox decision event");
                    None
                }
            },
            Err(error) => {
                tracing::warn!(id, error = %error, "failed to load run for mailbox decision event");
                None
            }
        };
        if let Some(run) = run {
            self.record_mailbox_decision_received_for_run(
                &run,
                tool_call_id,
                resume,
                delivery_path,
            )
            .await;
        }
    }

    async fn record_mailbox_decision_received(
        &self,
        thread_id: &str,
        run_id: &str,
        dispatch_id: Option<&str>,
        tool_call_id: &str,
        resume: &ToolCallResume,
        delivery_path: &'static str,
    ) {
        let Some(publisher) = &self.server_event_publisher else {
            return;
        };
        let origin = self.server_event_origin.clone();
        let payload = json!({
            "thread_id": thread_id,
            "run_id": run_id,
            "dispatch_id": dispatch_id,
            "tool_call_id": tool_call_id,
            "decision_id": resume.decision_id,
            "action": &resume.action,
            "result": &resume.result,
            "reason": &resume.reason,
            "resume_updated_at": resume.updated_at,
            "delivery_path": delivery_path,
        });
        let mut draft = match CanonicalEventDraft::new(
            vec![
                EventScope::thread(thread_id.to_string()),
                EventScope::run(run_id.to_string()),
            ],
            match CanonicalEventKind::new("MailboxDecisionReceived") {
                Ok(kind) => kind,
                Err(error) => {
                    tracing::error!(error = %error, "invalid mailbox decision event kind");
                    return;
                }
            },
            payload,
            origin.clone(),
        ) {
            Ok(draft) => draft,
            Err(error) => {
                tracing::error!(error = %error, run_id, tool_call_id, "invalid mailbox decision event draft");
                return;
            }
        };
        draft.visibility = EventVisibility::Public;
        draft.correlation_id = Some(resume.decision_id.clone());
        let options = AppendOptions {
            writer_id: Some("mailbox".to_string()),
            idempotency_key: Some(format!(
                "MailboxDecisionReceived/{run_id}/{tool_call_id}/{}",
                resume.decision_id
            )),
            expected_prior_cursors: Default::default(),
        };
        if let Err(error) = publisher.publish(draft, options).await {
            tracing::error!(error = %error, run_id, tool_call_id, "failed to record mailbox decision event");
        }
        self.record_tool_permission_resolved(
            thread_id,
            run_id,
            dispatch_id,
            tool_call_id,
            resume,
            delivery_path,
        )
        .await;
    }

    async fn record_tool_permission_resolved(
        &self,
        thread_id: &str,
        run_id: &str,
        dispatch_id: Option<&str>,
        tool_call_id: &str,
        resume: &ToolCallResume,
        delivery_path: &'static str,
    ) {
        let Some(approved) = resume
            .result
            .get("approved")
            .and_then(serde_json::Value::as_bool)
        else {
            return;
        };
        let Some(publisher) = &self.server_event_publisher else {
            return;
        };
        let origin = self.server_event_origin.clone();
        let payload = json!({
            "thread_id": thread_id,
            "run_id": run_id,
            "dispatch_id": dispatch_id,
            "tool_call_id": tool_call_id,
            "decision_id": resume.decision_id,
            "action": &resume.action,
            "approved": approved,
            "result": &resume.result,
            "reason": &resume.reason,
            "resume_updated_at": resume.updated_at,
            "delivery_path": delivery_path,
        });
        let mut draft = match CanonicalEventDraft::new(
            vec![
                EventScope::thread(thread_id.to_string()),
                EventScope::run(run_id.to_string()),
            ],
            match CanonicalEventKind::new("ToolPermissionResolved") {
                Ok(kind) => kind,
                Err(error) => {
                    tracing::error!(error = %error, "invalid tool permission resolved event kind");
                    return;
                }
            },
            payload,
            origin.clone(),
        ) {
            Ok(draft) => draft,
            Err(error) => {
                tracing::error!(error = %error, run_id, tool_call_id, "invalid tool permission resolved event draft");
                return;
            }
        };
        draft.visibility = EventVisibility::Public;
        draft.correlation_id = Some(resume.decision_id.clone());
        let options = AppendOptions {
            writer_id: Some("mailbox".to_string()),
            idempotency_key: Some(format!(
                "ToolPermissionResolved/{run_id}/{tool_call_id}/{}",
                resume.decision_id
            )),
            expected_prior_cursors: Default::default(),
        };
        if let Err(error) = publisher.publish(draft, options).await {
            tracing::error!(error = %error, run_id, tool_call_id, "failed to record tool permission resolved event");
        }
    }

    async fn record_message_committed(
        &self,
        thread_id: &str,
        run_id: &str,
        messages: &[Message],
        seq: u64,
    ) -> Result<(), MailboxError> {
        let Some(publisher) = &self.server_event_publisher else {
            return Ok(());
        };
        let origin = self.server_event_origin.clone();
        let Some(message) = seq
            .checked_sub(1)
            .and_then(|index| messages.get(index as usize))
        else {
            tracing::warn!(
                thread_id,
                run_id,
                seq,
                "message checkpoint event sequence is out of range"
            );
            return Ok(());
        };
        let Some(message_id) = message.id.as_deref().filter(|id| !id.trim().is_empty()) else {
            tracing::warn!(
                thread_id,
                run_id,
                seq,
                "message checkpoint event missing message id"
            );
            return Ok(());
        };
        let parent_message_id = seq
            .checked_sub(2)
            .and_then(|index| messages.get(index as usize))
            .and_then(|message| message.id.clone());
        let payload = json!({
            "thread_id": thread_id,
            "run_id": run_id,
            "message_id": message_id,
            "message_seq": seq,
            "role": message.role,
            "content_blocks": &message.content,
            "message_kind": message_kind(message),
            "parent_message_id": parent_message_id,
        });
        let kind = CanonicalEventKind::new("MessageCommitted").map_err(|error| {
            tracing::error!(error = %error, "invalid message committed event kind");
            MailboxError::Internal(format!("invalid message committed event kind: {error}"))
        })?;
        let mut draft = CanonicalEventDraft::new(
            vec![
                EventScope::thread(thread_id.to_string()),
                EventScope::run(run_id.to_string()),
            ],
            kind,
            payload,
            origin.clone(),
        )
        .map_err(|error| {
            tracing::error!(error = %error, thread_id, run_id, message_id, "invalid message committed event draft");
            MailboxError::Internal(format!("invalid message committed event draft: {error}"))
        })?;
        draft.visibility = EventVisibility::Public;
        draft.correlation_id = Some(run_id.to_string());
        let options = AppendOptions {
            writer_id: Some("mailbox".to_string()),
            idempotency_key: Some(format!(
                "MessageCommitted/{thread_id}/{run_id}/{message_id}"
            )),
            expected_prior_cursors: Default::default(),
        };
        publisher.publish(draft, options).await.map_err(|error| {
            tracing::error!(error = %error, thread_id, run_id, message_id, "failed to record message committed event");
            MailboxError::Internal(format!("failed to record message committed event: {error}"))
        })?;
        Ok(())
    }

    async fn record_thread_messages_checkpointed(
        &self,
        thread_id: &str,
        run_id: &str,
        messages: &[Message],
        first_new_seq: u64,
        last_new_seq: u64,
    ) -> Result<(), MailboxError> {
        let Some(publisher) = &self.server_event_publisher else {
            return Ok(());
        };
        let origin = self.server_event_origin.clone();
        let message_ids = (first_new_seq..=last_new_seq)
            .filter_map(|seq| {
                seq.checked_sub(1)
                    .and_then(|index| messages.get(index as usize))
                    .and_then(|message| message.id.clone())
            })
            .collect::<Vec<_>>();
        let payload = json!({
            "thread_id": thread_id,
            "run_id": run_id,
            "message_seq_start": first_new_seq,
            "message_seq_end": last_new_seq,
            "message_count": message_ids.len(),
            "message_ids": message_ids,
        });
        let kind = CanonicalEventKind::new("ThreadMessagesCheckpointed").map_err(|error| {
            tracing::error!(error = %error, "invalid thread messages checkpoint event kind");
            MailboxError::Internal(format!(
                "invalid thread messages checkpoint event kind: {error}"
            ))
        })?;
        let mut draft = CanonicalEventDraft::new(
            vec![
                EventScope::thread(thread_id.to_string()),
                EventScope::run(run_id.to_string()),
            ],
            kind,
            payload,
            origin.clone(),
        )
        .map_err(|error| {
            tracing::error!(error = %error, thread_id, run_id, "invalid thread messages checkpoint event draft");
            MailboxError::Internal(format!(
                "invalid thread messages checkpoint event draft: {error}"
            ))
        })?;
        draft.visibility = EventVisibility::Public;
        draft.correlation_id = Some(run_id.to_string());
        let options = AppendOptions {
            writer_id: Some("mailbox".to_string()),
            idempotency_key: Some(format!(
                "ThreadMessagesCheckpointed/{thread_id}/{run_id}/{first_new_seq}-{last_new_seq}"
            )),
            expected_prior_cursors: Default::default(),
        };
        publisher.publish(draft, options).await.map_err(|error| {
            tracing::error!(error = %error, thread_id, run_id, "failed to record thread messages checkpoint event");
            MailboxError::Internal(format!(
                "failed to record thread messages checkpoint event: {error}"
            ))
        })?;
        Ok(())
    }
}

fn validate_checkpoint_event_range(
    thread_id: &str,
    run_id: &str,
    messages: &[Message],
    first_new_seq: u64,
    last_new_seq: u64,
) -> Result<(), MailboxError> {
    for seq in first_new_seq..=last_new_seq {
        let Some(message) = seq
            .checked_sub(1)
            .and_then(|index| messages.get(index as usize))
        else {
            return Err(MailboxError::Internal(format!(
                "checkpoint event range {first_new_seq}-{last_new_seq} for thread '{thread_id}' run '{run_id}' exceeds committed message count {}",
                messages.len()
            )));
        };
        if message.id.as_deref().is_none_or(|id| id.trim().is_empty()) {
            return Err(MailboxError::Internal(format!(
                "checkpoint event message seq {seq} for thread '{thread_id}' run '{run_id}' is missing message id"
            )));
        }
    }
    Ok(())
}

fn message_kind(message: &Message) -> &'static str {
    match (message.role, message.visibility) {
        (Role::User, Visibility::All) => "user_input",
        (Role::User, Visibility::Internal) => "internal_user_input",
        (Role::Assistant, _) => "assistant_output",
        (Role::Tool, _) => "tool_result",
        (Role::System, Visibility::All) => "system",
        (Role::System, Visibility::Internal) => "internal_system",
    }
}