meerkat-mobkit 0.8.37

Companion orchestration platform for the Meerkat multi-agent runtime
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
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
//! Console request ownership around the shared Meerkat live host.
//!
//! This registry fences HTTP retries and cancellation, not live execution.
//! A host owns every channel, receipt, credential, and provider effect.

use std::collections::HashMap;
use std::sync::Arc;
use std::sync::atomic::{AtomicBool, Ordering};
use std::time::Duration;

use async_trait::async_trait;
use serde::Deserialize;
use tokio::sync::{Mutex, Notify};

use crate::live_contracts::PendingLiveChannelHandle;

#[cfg(feature = "openai-live")]
mod auth;
mod context_status;
#[cfg(feature = "openai-live")]
mod live_host;
mod summary;

pub(crate) use context_status::{
    VoiceContextPreparation, VoiceContextStatus, VoiceContextStatusRequest,
};

pub(crate) const VOICE_OPEN_METHOD: &str = "mobkit/console/voice/open";
pub(crate) const VOICE_READINESS_METHOD: &str = "mobkit/console/voice/readiness";
pub(crate) const VOICE_CLOSE_METHOD: &str = "mobkit/console/voice/close";
pub(crate) const VOICE_ANSWER_RECEIVED_METHOD: &str = "mobkit/console/voice/answer_received";
pub(crate) const VOICE_REPLACEMENT_METHOD: &str = "mobkit/console/voice/replacement";
pub(crate) const VOICE_ACTIVITY_METHOD: &str = "mobkit/console/voice/activity";
pub(crate) const VOICE_CONTEXT_STATUS_METHOD: &str = "mobkit/console/voice/context_status";
const SILENCE_LIMIT: Duration = Duration::from_mins(15);
const PENDING_SETUP_LIMIT: Duration = Duration::from_mins(2);

#[derive(Deserialize)]
#[serde(deny_unknown_fields)]
pub(crate) struct VoiceActivity {
    pub identity: String,
    pub request_id: String,
}

#[derive(Deserialize)]
#[serde(deny_unknown_fields)]
pub(crate) struct VoiceReadiness {
    pub identity: String,
}

pub(crate) fn is_channel_method(method: &str) -> bool {
    matches!(
        method,
        "mobkit/live/playback_owner/register"
            | "mobkit/live/playback_owner/revoke"
            | "mobkit/live/status"
            | "mobkit/live/close"
            | "mobkit/live/refresh"
            | "mobkit/live/interrupt"
            | "live/webrtc/answer"
    )
}

#[derive(Deserialize)]
#[serde(deny_unknown_fields)]
pub(crate) struct VoiceAnswerReceived {
    pub identity: String,
    pub request_id: String,
    pub channel_id: String,
}
const MAX_REQUESTS: usize = 4096;
/// Closed slots stay observable for this long so a delayed request for the
/// same id sees the closed disposition instead of resurrecting old work.
const CLOSED_RETENTION: Duration = Duration::from_mins(10);
/// Closed slots one principal may retain at once. Beyond this the oldest are
/// reaped first, so no principal can consume the shared capacity by itself.
const MAX_CLOSED_PER_PRINCIPAL: usize = 32;
const CLOSE_WAIT: Duration = Duration::from_secs(10);
pub const CONSOLE_VOICE_SHUTDOWN_TIMEOUT: Duration = CLOSE_WAIT;

#[derive(Clone, Debug, Deserialize)]
#[serde(deny_unknown_fields)]
pub(crate) struct VoiceRequest {
    pub identity: String,
    pub request_id: String,
}

impl VoiceRequest {
    fn validate(&self) -> Result<(), VoiceError> {
        validate_identity(&self.identity)?;
        if !valid_request_atom(&self.request_id) {
            return Err(VoiceError::InvalidRequest);
        }
        Ok(())
    }
}

fn valid_request_atom(value: &str) -> bool {
    !value.is_empty() && value.len() <= 256 && value.trim() == value
}

fn validate_identity(identity: &str) -> Result<(), VoiceError> {
    if !valid_request_atom(identity)
        || crate::member_comms_id::is_reserved_generated_alias(identity)
    {
        return Err(VoiceError::InvalidRequest);
    }
    Ok(())
}

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub(crate) enum VoiceError {
    Unavailable,
    Unauthorized,
    InvalidRequest,
    RequestConflict,
    RequestCapacity,
    Cancelled,
    Closed,
    Busy,
    HostFailed,
    ContextReadFailed,
}

impl VoiceError {
    pub(crate) fn rpc_error(self) -> crate::rpc::JsonRpcError {
        let (code, kind, message) = match self {
            Self::Unavailable => (-32050, "voice_unavailable", "Console voice is unavailable"),
            Self::Unauthorized => (
                -32030,
                "access_denied",
                "Console voice requires authorization",
            ),
            Self::InvalidRequest => (-32602, "invalid_params", "Invalid voice request"),
            Self::RequestConflict => (
                -32000,
                "voice_request_conflict",
                "Voice request conflicts with its existing owner",
            ),
            Self::RequestCapacity => (
                -32000,
                "voice_request_capacity",
                "Voice request capacity reached",
            ),
            Self::Cancelled => (-32000, "voice_cancelled", "Voice request was cancelled"),
            Self::Closed => (-32000, "voice_closed", "Voice conversation is closed"),
            Self::Busy => (
                -32000,
                "voice_busy",
                "Voice teardown is still pending; retry the same request",
            ),
            Self::HostFailed => (-32000, "voice_host_failed", "Voice host operation failed"),
            Self::ContextReadFailed => (
                -32000,
                "voice_context_read_failed",
                "Voice context status could not be read",
            ),
        };
        crate::rpc::JsonRpcError {
            code,
            message: message.to_string(),
            data: Some(serde_json::json!({ "kind": kind })),
        }
    }
}

/// These methods must delegate to shared live authority. A successful close
/// means no later activation can emerge from this exact host-owned open.
#[async_trait]
pub(crate) trait ConsoleVoiceSession: Send + Sync {
    fn pending(&self) -> PendingLiveChannelHandle;
    async fn close(&self) -> Result<(), VoiceError>;
    async fn dispatch(
        &self,
        _method: &str,
        _params: serde_json::Value,
    ) -> Result<serde_json::Value, VoiceError> {
        Err(VoiceError::Unavailable)
    }
    async fn answer_received(&self, _channel: &str) -> Result<(), VoiceError> {
        Err(VoiceError::Unavailable)
    }
    async fn replacement_required(&self) -> Result<serde_json::Value, VoiceError> {
        Err(VoiceError::Unavailable)
    }
    async fn context_preparation(
        &self,
        _channel: &str,
    ) -> Result<VoiceContextPreparation, VoiceError> {
        Err(VoiceError::Unavailable)
    }
}

#[async_trait]
pub(crate) trait ConsoleVoiceHost: Send + Sync {
    /// Validate current target authorization and the configured OpenAI
    /// credential using the same authority as open, without opening a provider.
    async fn ready(&self, principal: &str, identity: &str) -> Result<bool, VoiceError>;
    async fn open(
        &self,
        principal: &str,
        identity: &str,
    ) -> Result<Arc<dyn ConsoleVoiceSession>, VoiceError>;
}

#[derive(Default)]
struct RequestState {
    opening: bool,
    cancelled: bool,
    closing: bool,
    closed: bool,
    session: Option<Arc<dyn ConsoleVoiceSession>>,
    open_error: Option<VoiceError>,
    close_error: Option<VoiceError>,
    last_activity: Option<tokio::time::Instant>,
    setup_deadline: Option<tokio::time::Instant>,
    activated: bool,
    /// First moment the registry observed this slot closed; reaping is
    /// measured from here, never from the close request itself.
    retired_at: Option<tokio::time::Instant>,
}

/// Drop closed slots that are past retention, then enforce the per-principal
/// and global bounds by dropping the oldest closed slots first. Live slots
/// (opening, active, or failing to close) are never dropped here.
async fn reap_closed_requests(
    requests: &mut HashMap<RequestKey, Arc<RequestSlot>>,
    now: tokio::time::Instant,
) {
    let mut closed: Vec<(RequestKey, tokio::time::Instant)> = Vec::new();
    for (key, slot) in requests.iter() {
        let mut state = slot.state.lock().await;
        if !state.closed {
            continue;
        }
        let retired_at = *state.retired_at.get_or_insert(now);
        closed.push((key.clone(), retired_at));
    }
    closed.sort_by_key(|(_, retired_at)| *retired_at);
    let mut retained = Vec::new();
    for (key, retired_at) in closed {
        if now.saturating_duration_since(retired_at) >= CLOSED_RETENTION {
            requests.remove(&key);
        } else {
            retained.push(key);
        }
    }
    // Per-principal bound, keeping each principal's newest closed slots.
    let mut kept_per_principal: HashMap<&str, usize> = HashMap::new();
    let mut surviving = Vec::with_capacity(retained.len());
    for key in retained.iter().rev() {
        let kept = kept_per_principal.entry(key.0.as_str()).or_insert(0);
        if *kept >= MAX_CLOSED_PER_PRINCIPAL {
            requests.remove(key);
        } else {
            *kept += 1;
            surviving.push(key.clone());
        }
    }
    // Global bound: closed slots yield, oldest first, before capacity refuses.
    for key in surviving.iter().rev() {
        if requests.len() < MAX_REQUESTS {
            break;
        }
        requests.remove(key);
    }
}

struct RequestSlot {
    identity: String,
    state: Mutex<RequestState>,
    changed: Notify,
}

impl RequestSlot {
    fn supervise(self: &Arc<Self>) {
        let slot = Arc::clone(self);
        tokio::spawn(async move {
            loop {
                let changed = slot.changed.notified();
                let mut state = slot.state.lock().await;
                if state.closed {
                    return;
                }
                if state.cancelled {
                    drop(state);
                    tokio::time::sleep(Duration::from_secs(1)).await;
                    slot.cancel().await;
                    continue;
                }
                let deadline = if state.activated {
                    state.last_activity.map(|activity| activity + SILENCE_LIMIT)
                } else {
                    state.setup_deadline
                };
                let Some(deadline) = deadline else {
                    drop(state);
                    changed.await;
                    continue;
                };
                if tokio::time::Instant::now() >= deadline {
                    state.cancelled = true;
                    drop(state);
                    slot.cancel().await;
                    continue;
                }
                drop(state);
                tokio::select! {
                    () = changed => {},
                    () = tokio::time::sleep_until(deadline) => {},
                }
            }
        });
    }

    fn new(identity: String, state: RequestState) -> Self {
        Self {
            identity,
            state: Mutex::new(state),
            changed: Notify::new(),
        }
    }

    async fn result(&self) -> Result<PendingLiveChannelHandle, VoiceError> {
        loop {
            let changed = self.changed.notified();
            let state = self.state.lock().await;
            if state.cancelled {
                return Err(VoiceError::Cancelled);
            }
            if let Some(error) = state.open_error {
                return Err(error);
            }
            if let Some(session) = state.session.as_ref() {
                return Ok(session.pending());
            }
            drop(state);
            changed.await;
        }
    }

    async fn wait_closed(&self) -> Result<(), VoiceError> {
        loop {
            let changed = self.changed.notified();
            let state = self.state.lock().await;
            if state.closed {
                return Ok(());
            }
            if let Some(error) = state.close_error {
                return Err(error);
            }
            drop(state);
            changed.await;
        }
    }

    async fn cancel(self: &Arc<Self>) {
        let mut state = self.state.lock().await;
        state.cancelled = true;
        self.changed.notify_waiters();
        if state.closed || state.closing {
            return;
        }
        state.closing = true;
        state.close_error = None;
        let slot = Arc::clone(self);
        // The request task does not own cleanup: dropping its HTTP response
        // must not cancel teardown or strand a late successful provider open.
        tokio::spawn(async move {
            let session = loop {
                let changed = slot.changed.notified();
                let state = slot.state.lock().await;
                if !state.opening {
                    break state.session.clone();
                }
                drop(state);
                changed.await;
            };
            let result = match session {
                Some(session) => session.close().await,
                None => Ok(()),
            };
            let mut state = slot.state.lock().await;
            state.closing = false;
            match result {
                Ok(()) => {
                    state.closed = true;
                    state.session = None;
                }
                Err(error) => state.close_error = Some(error),
            }
            slot.changed.notify_waiters();
        });
    }
}

type RequestKey = (String, String);

#[derive(Clone, Default)]
pub struct ConsoleVoiceController {
    host: Option<Arc<dyn ConsoleVoiceHost>>,
    requests: Arc<Mutex<HashMap<RequestKey, Arc<RequestSlot>>>>,
    stopped: Arc<AtomicBool>,
}

impl ConsoleVoiceController {
    pub(crate) async fn context_status(
        &self,
        principal: &str,
        request: VoiceContextStatusRequest,
    ) -> Result<VoiceContextStatus, VoiceError> {
        if !valid_request_atom(&request.channel_id) {
            return Err(VoiceError::InvalidRequest);
        }
        let slot = self
            .request_slot(
                principal,
                &VoiceRequest {
                    identity: request.identity.clone(),
                    request_id: request.request_id.clone(),
                },
            )
            .await?;
        let session = {
            let state = slot.state.lock().await;
            if state.cancelled || state.closed {
                return Err(VoiceError::Closed);
            }
            state.session.clone().ok_or(VoiceError::Busy)?
        };
        if session.pending().channel_id != request.channel_id {
            return Err(VoiceError::RequestConflict);
        }
        // Never hold the request lock over a custody read. Activation, audio
        // activity and cancellation must proceed even if the read is delayed.
        let context_preparation = session.context_preparation(&request.channel_id).await?;
        let state = slot.state.lock().await;
        if state.cancelled || state.closed {
            return Err(VoiceError::Closed);
        }
        if session.pending().channel_id != request.channel_id {
            return Err(VoiceError::RequestConflict);
        }
        Ok(VoiceContextStatus {
            identity: request.identity,
            request_id: request.request_id,
            channel_id: request.channel_id,
            context_preparation,
        })
    }

    pub async fn shutdown(&self) -> Result<(), String> {
        let drain = async {
            let requests = self.requests.lock().await;
            self.stopped.store(true, Ordering::SeqCst);
            let slots = requests.values().cloned().collect::<Vec<_>>();
            drop(requests);
            for slot in &slots {
                slot.cancel().await;
            }
            for result in
                futures::future::join_all(slots.iter().map(|slot| slot.wait_closed())).await
            {
                result.map_err(|_| "console voice cleanup failed".to_string())?;
            }
            Ok(())
        };
        tokio::time::timeout(CONSOLE_VOICE_SHUTDOWN_TIMEOUT, drain)
            .await
            .map_err(|_| "console voice cleanup remains pending".to_string())?
    }

    pub(crate) async fn note_activity(
        &self,
        principal: &str,
        request: VoiceActivity,
    ) -> Result<(), VoiceError> {
        let slot = self
            .request_slot(
                principal,
                &VoiceRequest {
                    identity: request.identity,
                    request_id: request.request_id,
                },
            )
            .await?;
        let mut state = slot.state.lock().await;
        if state.cancelled || state.closed {
            return Err(VoiceError::Cancelled);
        }
        if state.session.is_none() || !state.activated {
            return Err(VoiceError::Busy);
        }
        state.last_activity = Some(tokio::time::Instant::now());
        tracing::trace!("console voice audio activity accepted");
        slot.changed.notify_waiters();
        Ok(())
    }

    /// Authentication readiness is independent of whether a voice request
    /// already owns the target; it is not permission to open a second channel.
    pub(crate) async fn ready(&self, principal: &str, identity: &str) -> Result<bool, VoiceError> {
        validate_identity(identity)?;
        if principal.trim().is_empty() {
            return Err(VoiceError::Unauthorized);
        }
        if self.stopped.load(Ordering::SeqCst) {
            return Ok(false);
        }
        match &self.host {
            Some(host) => host.ready(principal, identity).await,
            None => Ok(false),
        }
    }

    pub(crate) fn configured(&self) -> bool {
        self.host.is_some() && !self.stopped.load(Ordering::SeqCst)
    }

    async fn owned_session(
        &self,
        principal: &str,
        request: &VoiceRequest,
    ) -> Result<Arc<dyn ConsoleVoiceSession>, VoiceError> {
        let slot = self.request_slot(principal, request).await?;
        let state = slot.state.lock().await;
        if state.cancelled || state.closed {
            return Err(VoiceError::Closed);
        }
        state.session.clone().ok_or(VoiceError::Busy)
    }

    pub(crate) async fn answer_received(
        &self,
        principal: &str,
        request: VoiceRequest,
        channel: &str,
    ) -> Result<(), VoiceError> {
        self.owned_session(principal, &request)
            .await?
            .answer_received(channel)
            .await?;
        let slot = self.request_slot(principal, &request).await?;
        let mut state = slot.state.lock().await;
        if state.cancelled || state.closed {
            return Err(VoiceError::Closed);
        }
        if !state.activated {
            state.activated = true;
            state.last_activity = Some(tokio::time::Instant::now());
            state.setup_deadline = None;
            slot.changed.notify_waiters();
        }
        Ok(())
    }

    pub(crate) async fn replacement_required(
        &self,
        principal: &str,
        request: VoiceRequest,
    ) -> Result<serde_json::Value, VoiceError> {
        self.owned_session(principal, &request)
            .await?
            .replacement_required()
            .await
    }

    pub(crate) async fn dispatch_channel(
        &self,
        principal: &str,
        method: &str,
        params: serde_json::Value,
    ) -> Result<serde_json::Value, VoiceError> {
        let identity = params
            .get("identity")
            .and_then(serde_json::Value::as_str)
            .ok_or(VoiceError::InvalidRequest)?;
        let channel = params
            .get("channel_id")
            .and_then(serde_json::Value::as_str)
            .ok_or(VoiceError::InvalidRequest)?;
        let requests = self.requests.lock().await;
        let slots = requests
            .iter()
            .filter(|((owner, _), slot)| owner == principal && slot.identity == identity)
            .map(|(_, slot)| Arc::clone(slot))
            .collect::<Vec<_>>();
        drop(requests);
        for slot in slots {
            let state = slot.state.lock().await;
            if !state.cancelled
                && let Some(session) = state.session.as_ref()
                && session.pending().channel_id == channel
            {
                let session = Arc::clone(session);
                drop(state);
                return session.dispatch(method, params).await;
            }
        }
        Err(VoiceError::RequestConflict)
    }

    async fn request_slot(
        &self,
        principal: &str,
        request: &VoiceRequest,
    ) -> Result<Arc<RequestSlot>, VoiceError> {
        request.validate()?;
        if principal.trim().is_empty() {
            return Err(VoiceError::Unauthorized);
        }
        let requests = self.requests.lock().await;
        let slot = requests
            .get(&(principal.to_string(), request.request_id.clone()))
            .ok_or(VoiceError::RequestConflict)?;
        if slot.identity != request.identity {
            return Err(VoiceError::RequestConflict);
        }
        Ok(Arc::clone(slot))
    }

    // No production host is installed until the upstream summary,
    // existing-member execution and authenticated readiness seams are composed.
    #[allow(dead_code)]
    pub(crate) fn new(host: Arc<dyn ConsoleVoiceHost>) -> Self {
        Self {
            host: Some(host),
            requests: Arc::default(),
            stopped: Arc::default(),
        }
    }
}

impl ConsoleVoiceController {
    pub(crate) async fn open(
        &self,
        principal: &str,
        request: VoiceRequest,
    ) -> Result<PendingLiveChannelHandle, VoiceError> {
        request.validate()?;
        if principal.trim().is_empty() {
            return Err(VoiceError::Unauthorized);
        }
        let host = self.host.as_ref().ok_or(VoiceError::Unavailable)?;
        if !host.ready(principal, &request.identity).await? {
            return Err(VoiceError::Unavailable);
        }
        let key = (principal.to_string(), request.request_id.clone());
        let mut requests = self.requests.lock().await;
        if self.stopped.load(Ordering::SeqCst) {
            return Err(VoiceError::Unavailable);
        }
        let slot = if let Some(slot) = requests.get(&key) {
            if slot.identity != request.identity {
                return Err(VoiceError::RequestConflict);
            }
            Arc::clone(slot)
        } else {
            reap_closed_requests(&mut requests, tokio::time::Instant::now()).await;
            if requests.len() >= MAX_REQUESTS {
                return Err(VoiceError::RequestCapacity);
            }
            for ((owner, _), slot) in requests.iter() {
                let state = slot.state.lock().await;
                if owner == principal && !state.closed && state.open_error.is_none() {
                    return Err(VoiceError::Busy);
                }
            }
            let slot = Arc::new(RequestSlot::new(
                request.identity.clone(),
                RequestState {
                    opening: true,
                    ..RequestState::default()
                },
            ));
            requests.insert(key, Arc::clone(&slot));
            slot.supervise();
            let host = Arc::clone(host);
            let owner = principal.to_string();
            let pending = Arc::clone(&slot);
            tokio::spawn(async move {
                let result = host.open(&owner, &request.identity).await;
                let mut state = pending.state.lock().await;
                state.opening = false;
                match result {
                    Ok(session) => {
                        state.session = Some(session);
                        state.setup_deadline =
                            Some(tokio::time::Instant::now() + PENDING_SETUP_LIMIT);
                    }
                    Err(error) => {
                        state.open_error = Some(error);
                        state.closed = true;
                    }
                }
                pending.changed.notify_waiters();
            });
            slot
        };
        drop(requests);
        slot.result().await
    }

    pub(crate) async fn close(
        &self,
        principal: &str,
        request: VoiceRequest,
    ) -> Result<(), VoiceError> {
        request.validate()?;
        if principal.trim().is_empty() {
            return Err(VoiceError::Unauthorized);
        }
        let key = (principal.to_string(), request.request_id);
        let mut requests = self.requests.lock().await;
        let slot = if let Some(slot) = requests.get(&key) {
            if slot.identity != request.identity {
                return Err(VoiceError::RequestConflict);
            }
            Arc::clone(slot)
        } else {
            reap_closed_requests(&mut requests, tokio::time::Instant::now()).await;
            if requests.len() >= MAX_REQUESTS {
                return Err(VoiceError::RequestCapacity);
            }
            // Retain cancellation even when close wins the race with open.
            // The tombstone stays for CLOSED_RETENTION (bounded per
            // principal) so a delayed request cannot resurrect old work,
            // and is reaped afterwards so capacity recovers.
            let slot = Arc::new(RequestSlot::new(
                request.identity,
                RequestState {
                    cancelled: true,
                    closed: true,
                    retired_at: Some(tokio::time::Instant::now()),
                    ..RequestState::default()
                },
            ));
            requests.insert(key, Arc::clone(&slot));
            // The bound holds after this insertion as well, so a principal
            // issuing closes for unknown ids never exceeds its share.
            reap_closed_requests(&mut requests, tokio::time::Instant::now()).await;
            slot
        };
        drop(requests);
        slot.cancel().await;
        tokio::time::timeout(CLOSE_WAIT, slot.wait_closed())
            .await
            .map_err(|_| VoiceError::Busy)?
    }
}

#[cfg(test)]
#[allow(clippy::expect_used)]
mod tests {
    use super::*;
    use meerkat_contracts::{
        WireLiveChannelCapabilities, WireLiveContinuityMode, WireLiveTransportBootstrap,
    };
    use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering};
    use tokio::sync::Semaphore;

    struct Session {
        close_calls: AtomicUsize,
        fail_close: AtomicBool,
        fail_context_read: AtomicBool,
        channel: std::sync::RwLock<String>,
        block_context: AtomicBool,
        context_started: Notify,
        release_context: Notify,
    }

    #[async_trait]
    impl ConsoleVoiceSession for Session {
        fn pending(&self) -> PendingLiveChannelHandle {
            PendingLiveChannelHandle {
                channel_id: self.channel.read().expect("channel").clone(),
                target_identity: "agent-a".to_string(),
                execution_mode: crate::live_contracts::LiveExecutionMode::ClientContext,
                pending_receipt: "opaque-pending".to_string(),
                transport: WireLiveTransportBootstrap::Webrtc {
                    token: "opaque-token".to_string(),
                    answer_method: "live/webrtc/answer".to_string(),
                    http_url: None,
                },
                capabilities: WireLiveChannelCapabilities {
                    audio_in: true,
                    audio_out: true,
                    text_in: false,
                    text_out: false,
                    image_in: false,
                    video_in: false,
                    transcript_supported: true,
                    barge_in_supported: true,
                    provider_native_resume: false,
                },
                continuity: WireLiveContinuityMode::TranscriptOnly,
            }
        }

        async fn close(&self) -> Result<(), VoiceError> {
            self.close_calls.fetch_add(1, Ordering::SeqCst);
            if self.fail_close.load(Ordering::SeqCst) {
                Err(VoiceError::HostFailed)
            } else {
                Ok(())
            }
        }

        async fn answer_received(&self, channel: &str) -> Result<(), VoiceError> {
            if channel != self.pending().channel_id {
                return Err(VoiceError::RequestConflict);
            }
            Ok(())
        }

        async fn context_preparation(
            &self,
            channel: &str,
        ) -> Result<VoiceContextPreparation, VoiceError> {
            if self.fail_context_read.load(Ordering::SeqCst) {
                return Err(VoiceError::ContextReadFailed);
            }
            if channel != self.pending().channel_id {
                return Err(VoiceError::RequestConflict);
            }
            if self.block_context.load(Ordering::SeqCst) {
                self.context_started.notify_one();
                self.release_context.notified().await;
            }
            Ok(VoiceContextPreparation::NotRequested)
        }
    }

    struct Host {
        ready: AtomicBool,
        checked_identities: Mutex<Vec<String>>,
        opens: AtomicUsize,
        started: Notify,
        permit: Semaphore,
        session: Arc<Session>,
    }

    impl Host {
        fn new(ready: bool, blocked: bool) -> Arc<Self> {
            Arc::new(Self {
                ready: AtomicBool::new(ready),
                checked_identities: Mutex::new(Vec::new()),
                opens: AtomicUsize::new(0),
                started: Notify::new(),
                permit: Semaphore::new(usize::from(!blocked)),
                session: Arc::new(Session {
                    close_calls: AtomicUsize::new(0),
                    fail_close: AtomicBool::new(false),
                    fail_context_read: AtomicBool::new(false),
                    channel: std::sync::RwLock::new("test-channel".to_string()),
                    block_context: AtomicBool::new(false),
                    context_started: Notify::new(),
                    release_context: Notify::new(),
                }),
            })
        }
    }

    #[async_trait]
    impl ConsoleVoiceHost for Host {
        async fn ready(&self, _principal: &str, identity: &str) -> Result<bool, VoiceError> {
            self.checked_identities
                .lock()
                .await
                .push(identity.to_string());
            Ok(self.ready.load(Ordering::SeqCst))
        }

        async fn open(
            &self,
            _principal: &str,
            _identity: &str,
        ) -> Result<Arc<dyn ConsoleVoiceSession>, VoiceError> {
            self.opens.fetch_add(1, Ordering::SeqCst);
            self.started.notify_one();
            self.permit.acquire().await.expect("open permit").forget();
            Ok(Arc::clone(&self.session) as Arc<dyn ConsoleVoiceSession>)
        }
    }

    fn request() -> VoiceRequest {
        VoiceRequest {
            identity: "agent-a".to_string(),
            request_id: "request-a".to_string(),
        }
    }

    fn before_silence_expiry() -> Duration {
        SILENCE_LIMIT
            .checked_sub(Duration::from_secs(1))
            .expect("silence limit exceeds one second")
    }

    fn context_request() -> VoiceContextStatusRequest {
        VoiceContextStatusRequest {
            identity: "agent-a".to_string(),
            request_id: "request-a".to_string(),
            channel_id: "test-channel".to_string(),
        }
    }

    #[tokio::test]
    async fn context_read_errors_are_rpc_errors_not_preparation_failure_or_ack() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        host.session.fail_context_read.store(true, Ordering::SeqCst);
        let result = controller.context_status("alice", context_request()).await;
        assert_eq!(result, Err(VoiceError::ContextReadFailed));
        let error = VoiceError::ContextReadFailed.rpc_error();
        assert_eq!(error.code, -32000);
        assert_eq!(
            error.data,
            Some(serde_json::json!({"kind":"voice_context_read_failed"}))
        );
        controller.close("alice", request()).await.expect("close");
    }

    #[tokio::test(start_paused = true)]
    async fn context_status_is_exact_request_owned_and_does_not_extend_audio_activity() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host);
        controller.open("alice", request()).await.expect("pending");
        let slot = controller
            .request_slot("alice", &request())
            .await
            .expect("slot");
        assert_eq!(
            controller.context_status("", context_request()).await,
            Err(VoiceError::Unauthorized)
        );
        assert_eq!(
            controller.context_status("bob", context_request()).await,
            Err(VoiceError::RequestConflict)
        );
        for request in [
            VoiceContextStatusRequest {
                identity: "agent-b".to_string(),
                ..context_request()
            },
            VoiceContextStatusRequest {
                request_id: "other".to_string(),
                ..context_request()
            },
            VoiceContextStatusRequest {
                channel_id: "other".to_string(),
                ..context_request()
            },
        ] {
            assert_eq!(
                controller.context_status("alice", request).await,
                Err(VoiceError::RequestConflict)
            );
        }

        assert_eq!(
            controller
                .context_status("alice", context_request())
                .await
                .expect("read")
                .context_preparation,
            VoiceContextPreparation::NotRequested,
        );
        assert!(!slot.state.lock().await.activated);
        assert!(slot.state.lock().await.last_activity.is_none());
        controller
            .answer_received("alice", request(), "test-channel")
            .await
            .expect("activate");
        let activity = slot.state.lock().await.last_activity;
        tokio::time::advance(before_silence_expiry()).await;
        controller
            .context_status("alice", context_request())
            .await
            .expect("active read");
        assert_eq!(slot.state.lock().await.last_activity, activity);
        tokio::time::advance(Duration::from_secs(2)).await;
        slot.wait_closed().await.expect("silence expiry");
        assert_eq!(
            controller.context_status("alice", context_request()).await,
            Err(VoiceError::Closed)
        );
    }

    #[tokio::test]
    async fn delayed_context_read_does_not_block_activation_close_or_channel_fences() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        host.session.block_context.store(true, Ordering::SeqCst);
        let reader = controller.clone();
        let pending =
            tokio::spawn(async move { reader.context_status("alice", context_request()).await });
        host.session.context_started.notified().await;
        controller
            .answer_received("alice", request(), "test-channel")
            .await
            .expect("activation while read pending");
        *host.session.channel.write().expect("channel") = "replacement-channel".to_string();
        host.session.release_context.notify_one();
        assert_eq!(
            pending.await.expect("read task"),
            Err(VoiceError::RequestConflict)
        );
        assert_eq!(
            controller.context_status("alice", context_request()).await,
            Err(VoiceError::RequestConflict)
        );
        let reader = controller.clone();
        let pending = tokio::spawn(async move {
            reader
                .context_status(
                    "alice",
                    VoiceContextStatusRequest {
                        channel_id: "replacement-channel".to_string(),
                        ..context_request()
                    },
                )
                .await
        });
        host.session.context_started.notified().await;
        controller
            .close("alice", request())
            .await
            .expect("close while read pending");
        host.session.release_context.notify_one();
        assert_eq!(pending.await.expect("read task"), Err(VoiceError::Closed));
    }

    #[test]
    fn context_status_rejects_extra_or_missing_scope_fields() {
        for value in [
            serde_json::json!({"identity":"agent-a","request_id":"request-a"}),
            serde_json::json!({"identity":"agent-a","channel_id":"test-channel"}),
            serde_json::json!({"request_id":"request-a","channel_id":"test-channel"}),
            serde_json::json!({"identity":"agent-a","request_id":"request-a","channel_id":"test-channel",
                "pending_receipt":"caller-cannot-supply-authority"}),
        ] {
            assert!(serde_json::from_value::<VoiceContextStatusRequest>(value).is_err());
        }
    }

    #[tokio::test]
    async fn configuration_discovery_does_not_probe_and_readiness_targets_one_identity() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        assert!(controller.configured());
        assert!(host.checked_identities.lock().await.is_empty());
        assert!(
            controller
                .ready("alice", "agent-a")
                .await
                .expect("target readiness")
        );
        assert_eq!(
            *host.checked_identities.lock().await,
            vec!["agent-a".to_string()]
        );
        assert_eq!(host.opens.load(Ordering::SeqCst), 0);
    }

    #[tokio::test]
    async fn missing_host_and_missing_auth_never_open() {
        assert_eq!(
            ConsoleVoiceController::default()
                .open("alice", request())
                .await,
            Err(VoiceError::Unavailable)
        );
        let host = Host::new(false, false);
        let controller = ConsoleVoiceController::new(host.clone());
        assert_eq!(
            controller.open("alice", request()).await,
            Err(VoiceError::Unavailable)
        );
        host.ready.store(true, Ordering::SeqCst);
        assert_eq!(
            controller.open("", request()).await,
            Err(VoiceError::Unauthorized)
        );
        assert_eq!(host.opens.load(Ordering::SeqCst), 0);
    }

    #[tokio::test]
    async fn repeated_open_is_idempotent_and_request_cannot_retarget() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        let pending = controller.open("alice", request()).await.expect("open");
        assert_eq!(
            controller.open("alice", request()).await.expect("retry"),
            pending
        );
        let mut retargeted = request();
        retargeted.identity = "agent-b".to_string();
        assert_eq!(
            controller.open("alice", retargeted.clone()).await,
            Err(VoiceError::RequestConflict)
        );
        assert_eq!(
            controller.close("alice", retargeted).await,
            Err(VoiceError::RequestConflict)
        );
        assert_eq!(host.opens.load(Ordering::SeqCst), 1);
        controller.close("alice", request()).await.expect("close");
    }

    #[tokio::test]
    async fn close_before_open_retains_cancellation_fence() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.close("alice", request()).await.expect("fence");
        assert_eq!(
            controller.open("alice", request()).await,
            Err(VoiceError::Cancelled)
        );
        assert_eq!(host.opens.load(Ordering::SeqCst), 0);
    }

    #[tokio::test]
    async fn late_open_is_closed_even_after_both_http_waiters_disconnect() {
        let host = Host::new(true, true);
        let controller = ConsoleVoiceController::new(host.clone());
        let opener = controller.clone();
        let open = tokio::spawn(async move { opener.open("alice", request()).await });
        host.started.notified().await;
        open.abort();
        let slot = controller
            .requests
            .lock()
            .await
            .get(&("alice".to_string(), "request-a".to_string()))
            .expect("slot")
            .clone();
        slot.cancel().await;
        let closer = controller.clone();
        let close = tokio::spawn(async move { closer.close("alice", request()).await });
        close.abort();
        assert!(!slot.state.lock().await.closed);
        host.permit.add_permits(1);
        tokio::time::timeout(Duration::from_secs(1), slot.wait_closed())
            .await
            .expect("cleanup completes")
            .expect("closed");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
        assert_eq!(
            controller.open("alice", request()).await,
            Err(VoiceError::Cancelled)
        );
    }

    #[tokio::test]
    async fn text_cannot_be_reported_as_voice_activity() {
        assert!(
            serde_json::from_value::<VoiceActivity>(serde_json::json!({
                "identity":"agent-a", "request_id":"request-a"
            }))
            .is_ok()
        );
        assert!(
            serde_json::from_value::<VoiceActivity>(serde_json::json!({
                "identity":"agent-a", "request_id":"request-a", "kind":"text"
            }))
            .is_err()
        );
    }

    #[tokio::test]
    async fn readiness_does_not_open_and_remains_available_for_an_active_voice_target() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        assert!(
            controller
                .ready("alice", "agent-a")
                .await
                .expect("readiness")
        );
        assert_eq!(host.opens.load(Ordering::SeqCst), 0);
        controller.open("alice", request()).await.expect("open");
        controller
            .answer_received("alice", request(), "test-channel")
            .await
            .expect("activation");
        assert!(
            controller
                .request_slot("alice", &request())
                .await
                .expect("slot")
                .state
                .lock()
                .await
                .activated
        );
        assert!(
            controller
                .ready("alice", "agent-a")
                .await
                .expect("active readiness")
        );
        assert_eq!(host.opens.load(Ordering::SeqCst), 1);
        host.ready.store(false, Ordering::SeqCst);
        assert!(
            !controller
                .ready("alice", "agent-a")
                .await
                .expect("revoked readiness")
        );
        assert_eq!(
            controller.open("alice", request()).await,
            Err(VoiceError::Unavailable)
        );
        assert_eq!(
            host.opens.load(Ordering::SeqCst),
            1,
            "active readiness must not open a second channel"
        );
        controller.close("alice", request()).await.expect("close");
        assert_eq!(
            controller.replacement_required("alice", request()).await,
            Err(VoiceError::Closed),
        );
    }

    #[tokio::test(start_paused = true)]
    async fn expensive_open_does_not_consume_the_voice_silence_window() {
        let host = Host::new(true, true);
        let controller = ConsoleVoiceController::new(host.clone());
        let opener = controller.clone();
        let open = tokio::spawn(async move { opener.open("alice", request()).await });
        host.started.notified().await;
        let slot = controller
            .request_slot("alice", &request())
            .await
            .expect("slot");
        tokio::time::advance(SILENCE_LIMIT + Duration::from_secs(1)).await;
        assert!(
            !slot.state.lock().await.cancelled,
            "setup is not voice silence"
        );
        host.permit.add_permits(1);
        open.await.expect("open task").expect("pending handle");
        assert!(slot.state.lock().await.last_activity.is_none());
        controller
            .answer_received("alice", request(), "test-channel")
            .await
            .expect("activation");
        tokio::time::advance(before_silence_expiry()).await;
        assert!(!slot.state.lock().await.cancelled);
        controller.close("alice", request()).await.expect("close");
    }

    #[tokio::test(start_paused = true)]
    async fn abandoned_pending_setup_has_a_separate_cleanup_deadline() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller
            .open("alice", request())
            .await
            .expect("pending handle");
        let slot = controller
            .request_slot("alice", &request())
            .await
            .expect("slot");
        assert!(slot.state.lock().await.last_activity.is_none());
        tokio::time::advance(PENDING_SETUP_LIMIT).await;
        slot.wait_closed().await.expect("abandoned setup cleaned");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
    }

    #[tokio::test(start_paused = true)]
    async fn activation_starts_silence_window_but_replacement_ack_does_not_extend_it() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        tokio::time::advance(Duration::from_secs(30)).await;
        controller
            .answer_received("alice", request(), "test-channel")
            .await
            .expect("initial activation");
        tokio::time::advance(before_silence_expiry()).await;
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 0);
        controller
            .answer_received("alice", request(), "test-channel")
            .await
            .expect("repeated activation");
        tokio::time::advance(Duration::from_secs(1)).await;
        controller
            .request_slot("alice", &request())
            .await
            .expect("slot")
            .wait_closed()
            .await
            .expect("closed");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
    }

    #[tokio::test(start_paused = true)]
    async fn server_silence_watchdog_uses_only_explicit_audio_activity() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        controller
            .answer_received("alice", request(), "test-channel")
            .await
            .expect("activation acknowledgement");
        let slot = controller
            .request_slot("alice", &request())
            .await
            .expect("slot");
        tokio::time::advance(before_silence_expiry()).await;
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 0);
        controller
            .note_activity(
                "alice",
                VoiceActivity {
                    identity: request().identity,
                    request_id: request().request_id,
                },
            )
            .await
            .expect("actual model audio");
        tokio::time::advance(before_silence_expiry()).await;
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 0);
        tokio::time::advance(Duration::from_secs(1)).await;
        slot.wait_closed()
            .await
            .expect("silence closes through host");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
    }

    #[tokio::test]
    async fn close_is_principal_scoped_and_survives_readiness_revocation() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        controller
            .close("bob", request())
            .await
            .expect("other principal tombstone");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 0);
        host.ready.store(false, Ordering::SeqCst);
        controller
            .close("alice", request())
            .await
            .expect("owner close");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
    }

    #[tokio::test]
    async fn closed_requests_are_reaped_after_retention_and_capacity_recovers() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        controller.close("alice", request()).await.expect("close");
        assert_eq!(controller.requests.lock().await.len(), 1);
        let mut foreign = request();
        foreign.request_id = "bob-late-close".to_string();
        controller.close("bob", foreign).await.expect("tombstone");
        {
            let mut requests = controller.requests.lock().await;
            assert_eq!(requests.len(), 2, "closed slots are retained for a while");
            let now = tokio::time::Instant::now();
            reap_closed_requests(&mut requests, now).await;
            assert_eq!(requests.len(), 2, "retention keeps recent closed slots");
            reap_closed_requests(
                &mut requests,
                now + CLOSED_RETENTION + Duration::from_secs(1),
            )
            .await;
            assert_eq!(requests.len(), 0, "expired closed slots are reaped");
        }
        let mut third = request();
        third.request_id = "third-request".to_string();
        // The fake host grants one open per permit; allow the reopen.
        host.permit.add_permits(1);
        controller
            .open("alice", third)
            .await
            .expect("open after retention is not refused by capacity or busy");
        let requests = controller.requests.lock().await;
        assert_eq!(requests.len(), 1);
        assert!(requests.contains_key(&("alice".to_string(), "third-request".to_string())));
    }

    #[tokio::test]
    async fn foreign_close_tombstones_are_bounded_per_principal() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        for index in 0..(MAX_CLOSED_PER_PRINCIPAL * 3) {
            let mut foreign = request();
            foreign.request_id = format!("bob-{index}");
            controller
                .close("bob", foreign)
                .await
                .expect("foreign close leaves a bounded tombstone");
        }
        let requests = controller.requests.lock().await;
        let bob = requests.keys().filter(|(owner, _)| owner == "bob").count();
        assert!(
            bob <= MAX_CLOSED_PER_PRINCIPAL,
            "bob retains at most {MAX_CLOSED_PER_PRINCIPAL} closed slots, found {bob}"
        );
        assert!(
            requests.contains_key(&("alice".to_string(), request().request_id)),
            "the live call of another principal is untouched"
        );
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 0);
    }

    #[tokio::test]
    async fn close_failure_remains_retryable_and_blocks_another_open() {
        let host = Host::new(true, false);
        let controller = ConsoleVoiceController::new(host.clone());
        controller.open("alice", request()).await.expect("open");
        host.session.fail_close.store(true, Ordering::SeqCst);
        assert_eq!(
            controller.close("alice", request()).await,
            Err(VoiceError::HostFailed)
        );
        let mut next = request();
        next.request_id = "next-request".to_string();
        assert_eq!(controller.open("alice", next).await, Err(VoiceError::Busy));
        host.session.fail_close.store(false, Ordering::SeqCst);
        controller
            .close("alice", request())
            .await
            .expect("retry closes");
        controller
            .close("alice", request())
            .await
            .expect("close idempotent");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 2);
    }

    #[tokio::test(start_paused = true)]
    async fn close_timeout_never_claims_closed_and_eventual_cleanup_is_retained() {
        let host = Host::new(true, true);
        let controller = ConsoleVoiceController::new(host.clone());
        let opener = controller.clone();
        let open = tokio::spawn(async move { opener.open("alice", request()).await });
        host.started.notified().await;
        assert_eq!(
            controller.close("alice", request()).await,
            Err(VoiceError::Busy)
        );
        assert_eq!(open.await.expect("open waiter"), Err(VoiceError::Cancelled));
        host.permit.add_permits(1);
        controller
            .close("alice", request())
            .await
            .expect("eventual close");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
    }

    #[test]
    fn voice_request_rejects_authority_fields_and_ambiguous_identifiers() {
        assert!(
            serde_json::from_value::<VoiceRequest>(serde_json::json!({
                "identity": "agent-a", "request_id": "r", "principal": "administrator"
            }))
            .is_err()
        );
        for identity in ["", " agent-a", "agent-a ", "rt:other"] {
            let mut invalid = request();
            invalid.identity = identity.to_string();
            assert_eq!(invalid.validate(), Err(VoiceError::InvalidRequest));
        }
    }
}