meerkat-mobkit 0.8.38

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
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
//! 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;
use crate::live_wiring::{
    LiveOwner, LiveOwnerArbiter, LiveOwnerCloser, LiveOwnerLease, LiveSupersededReason,
};

#[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,
    /// The gateway's single live voice path was taken by another owner
    /// ("latest engaged wins"); this call was closed for that reason.
    Superseded(LiveSupersededReason),
}

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",
            ),
            Self::Superseded(_) => (
                -32000,
                "voice_superseded",
                "Voice conversation was superseded by another live owner",
            ),
        };
        let mut data = serde_json::json!({ "kind": kind });
        if let Self::Superseded(reason) = self {
            data["reason"] = serde_json::Value::String(reason.as_str().to_string());
        }
        crate::rpc::JsonRpcError {
            code,
            message: message.to_string(),
            data: Some(data),
        }
    }
}

/// 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>,
    /// Set when the voice-path arbiter closed this call for another owner.
    /// Every later request for the slot reports it instead of a bare close.
    superseded: Option<LiveSupersededReason>,
    /// The slot's engagement of the gateway's live voice path.
    lease: Option<LiveOwnerLease>,
}

/// 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,
    arbiter: Option<Arc<LiveOwnerArbiter>>,
}

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, arbiter: Option<Arc<LiveOwnerArbiter>>) -> Self {
        Self {
            identity,
            state: Mutex::new(state),
            changed: Notify::new(),
            arbiter,
        }
    }

    /// The typed error a closed slot reports: a supersession when the
    /// arbiter closed it for another live owner, otherwise `fallback`.
    fn closed_error(state: &RequestState, fallback: VoiceError) -> VoiceError {
        state.superseded.map_or(fallback, VoiceError::Superseded)
    }

    /// The close the voice-path arbiter runs when another owner wins: mark
    /// the reason, cancel through the ordinary teardown path, and wait for it.
    fn owner_closer(self: &Arc<Self>) -> LiveOwnerCloser {
        let slot = Arc::clone(self);
        Arc::new(move |reason, _channel| {
            let slot = Arc::clone(&slot);
            Box::pin(async move {
                let has_channel = {
                    let mut state = slot.state.lock().await;
                    state.superseded = Some(reason);
                    state.session.is_some() || !state.opening
                };
                // `cancel` marks the slot and spawns the teardown that closes
                // whatever the provider open yields, now or later.
                slot.cancel().await;
                if !has_channel {
                    // Nothing is live yet: the in-flight open will find the
                    // slot cancelled and close its own channel on completion.
                    // Waiting here would block the winner on the loser's
                    // provider handshake.
                    return Ok(());
                }
                tokio::time::timeout(CLOSE_WAIT, slot.wait_closed())
                    .await
                    .map_err(|_| "console voice teardown is still pending".to_string())?
                    .map_err(|error| format!("console voice close failed: {error:?}"))
            })
        })
    }

    async fn result(&self) -> Result<PendingLiveChannelHandle, VoiceError> {
        loop {
            let changed = self.changed.notified();
            let state = self.state.lock().await;
            if state.cancelled {
                return Err(Self::closed_error(&state, 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;
            let released_lease = match result {
                Ok(()) => {
                    state.closed = true;
                    state.session = None;
                    state.lease.take()
                }
                Err(error) => {
                    state.close_error = Some(error);
                    None
                }
            };
            slot.changed.notify_waiters();
            drop(state);
            // Only after the slot is observably closed: the arbiter may be
            // mid-engagement waiting on exactly that, and a stale lease is
            // ignored, so this can never evict the owner that replaced us.
            if let (Some(arbiter), Some(lease)) = (slot.arbiter.as_ref(), released_lease) {
                arbiter.release(lease);
            }
        });
    }
}

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>,
    /// The gateway's single live voice path, shared with the external
    /// `mobkit/live/*` door when both are registered. `None` means console
    /// voice is the only door and needs no arbitration.
    arbiter: Option<Arc<LiveOwnerArbiter>>,
}

/// What `mobkit/console/voice/readiness` reports for one target.
#[derive(Clone, Debug, PartialEq, Eq)]
pub(crate) struct VoiceReadinessReport {
    pub available: bool,
    /// Typed reason when unavailable because another owner holds the live
    /// path. Plain unavailability (no host, no credential, unauthorized
    /// target) carries no reason, as before.
    pub reason: Option<&'static str>,
    /// The owner holding the live path, when `reason` names one.
    pub holder: Option<LiveOwner>,
}

impl VoiceReadinessReport {
    pub(crate) const EXTERNAL_LIVE_ACTIVE: &'static str = "external_live_active";

    pub(crate) fn to_wire(&self, identity: &str) -> serde_json::Value {
        let mut wire = serde_json::json!({ "identity": identity, "available": self.available });
        if let Some(reason) = self.reason {
            wire["reason"] = serde_json::Value::String(reason.to_string());
        }
        if let Some(holder) = self.holder.as_ref() {
            let mut holder_wire = serde_json::json!({ "identity": holder.identity() });
            if let Some(channel_id) = holder.channel_id() {
                holder_wire["channel_id"] = serde_json::Value::String(channel_id.to_string());
            }
            wire["holder"] = holder_wire;
        }
        wire
    }
}

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(RequestSlot::closed_error(&state, 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(RequestSlot::closed_error(&state, 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(RequestSlot::closed_error(&state, 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),
        }
    }

    /// Readiness with the typed reason and holder when the external live
    /// channel holds the gateway's voice path. Never opens a provider.
    pub(crate) async fn readiness(
        &self,
        principal: &str,
        identity: &str,
    ) -> Result<VoiceReadinessReport, VoiceError> {
        validate_identity(identity)?;
        if principal.trim().is_empty() {
            return Err(VoiceError::Unauthorized);
        }
        let holder = match self.arbiter.as_ref() {
            Some(arbiter) => arbiter.holder().await,
            None => None,
        };
        if let Some(holder @ LiveOwner::ExternalLive { .. }) = holder {
            return Ok(VoiceReadinessReport {
                available: false,
                reason: Some(VoiceReadinessReport::EXTERNAL_LIVE_ACTIVE),
                holder: Some(holder),
            });
        }
        Ok(VoiceReadinessReport {
            available: self.ready(principal, identity).await?,
            reason: None,
            holder: None,
        })
    }

    /// Share the gateway's live voice path with the external live door.
    #[cfg_attr(not(feature = "openai-live"), allow(dead_code))]
    #[must_use]
    pub(crate) fn with_arbiter(mut self, arbiter: Arc<LiveOwnerArbiter>) -> Self {
        self.arbiter = Some(arbiter);
        self
    }

    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(RequestSlot::closed_error(&state, 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(RequestSlot::closed_error(&state, 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(),
            arbiter: None,
        }
    }
}

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()
                },
                self.arbiter.clone(),
            ));
            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 {
                // Take the gateway's live voice path first ("latest engaged
                // wins"): an active external channel is closed with a typed
                // reason before this call opens. A close that fails keeps the
                // external owner and fails this call closed.
                let lease = if let Some(arbiter) = pending.arbiter.as_ref() {
                    let engaged = arbiter
                        .engage(
                            LiveOwner::ConsoleVoice {
                                principal: owner.clone(),
                                identity: request.identity.clone(),
                                channel_id: None,
                            },
                            pending.owner_closer(),
                        )
                        .await;
                    match engaged {
                        Ok((lease, preempted)) => {
                            if let Some(previous) = preempted {
                                tracing::info!(
                                    identity = %request.identity,
                                    superseded = ?previous,
                                    "console voice took the live voice path"
                                );
                            }
                            Some(lease)
                        }
                        Err(error) => {
                            tracing::warn!(%error, "console voice could not take the live voice path");
                            let mut state = pending.state.lock().await;
                            state.opening = false;
                            state.open_error = Some(VoiceError::HostFailed);
                            state.closed = true;
                            pending.changed.notify_waiters();
                            return;
                        }
                    }
                } else {
                    None
                };
                let result = host.open(&owner, &request.identity).await;
                let mut state = pending.state.lock().await;
                state.opening = false;
                match result {
                    Ok(session) => {
                        let mut lost_to = None;
                        if let (Some(arbiter), Some(lease)) = (pending.arbiter.as_ref(), lease) {
                            arbiter.bind_channel(lease, &session.pending().channel_id);
                            lost_to = arbiter.take_superseded(lease);
                        }
                        state.lease = lease;
                        state.session = Some(session);
                        state.setup_deadline =
                            Some(tokio::time::Instant::now() + PENDING_SETUP_LIMIT);
                        if let Some(reason) = lost_to {
                            // Another owner took the path while this open was
                            // in flight. The channel just opened must not stay
                            // live beside the winner: close it through the
                            // ordinary teardown and report the reason.
                            state.superseded = Some(reason);
                            drop(state);
                            pending.cancel().await;
                            return;
                        }
                    }
                    Err(error) => {
                        if let (Some(arbiter), Some(lease)) = (pending.arbiter.as_ref(), lease) {
                            arbiter.release(lease);
                        }
                        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()
                },
                None,
            ));
            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(),
        }
    }

    fn external_owner(identity: &str) -> LiveOwner {
        LiveOwner::ExternalLive {
            identity: identity.to_string(),
            channel_id: Some(format!("{identity}-channel")),
        }
    }

    fn noop_closer() -> LiveOwnerCloser {
        Arc::new(|_, _| Box::pin(async { Ok(()) }))
    }

    #[tokio::test]
    async fn external_live_engagement_supersedes_the_console_call_with_a_typed_reason() {
        let host = Host::new(true, false);
        let arbiter = Arc::new(LiveOwnerArbiter::default());
        let controller =
            ConsoleVoiceController::new(host.clone()).with_arbiter(Arc::clone(&arbiter));
        controller.open("alice", request()).await.expect("open");
        assert_eq!(
            arbiter.holder().await,
            Some(LiveOwner::ConsoleVoice {
                principal: "alice".to_string(),
                identity: "agent-a".to_string(),
                channel_id: Some("test-channel".to_string()),
            }),
            "the console call binds its channel to its engagement"
        );

        // The external live door takes the path: the console call is closed
        // through its ordinary teardown and every later request says why.
        let (_, preempted) = arbiter
            .engage(external_owner("agent-b"), noop_closer())
            .await
            .expect("external engagement");
        assert_eq!(preempted.map(|owner| owner.kind()), Some("console_voice"));
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
        let superseded = VoiceError::Superseded(LiveSupersededReason::SupersededByExternalLive);
        assert_eq!(
            controller.context_status("alice", context_request()).await,
            Err(superseded)
        );
        assert_eq!(
            controller.replacement_required("alice", request()).await,
            Err(superseded)
        );
        assert_eq!(
            controller
                .note_activity(
                    "alice",
                    VoiceActivity {
                        identity: "agent-a".to_string(),
                        request_id: "request-a".to_string(),
                    },
                )
                .await,
            Err(superseded)
        );
        let error = superseded.rpc_error();
        assert_eq!(error.code, -32000);
        assert_eq!(
            error.data,
            Some(serde_json::json!({
                "kind": "voice_superseded",
                "reason": "superseded_by_external_live",
            }))
        );
        // Closing the superseded call is still an ordinary, idempotent close.
        controller
            .close("alice", request())
            .await
            .expect("close superseded");
        assert_eq!(host.session.close_calls.load(Ordering::SeqCst), 1);
        assert_eq!(
            arbiter.holder().await.map(|owner| owner.kind()),
            Some("external_live"),
            "a superseded console close never evicts the owner that replaced it"
        );
    }

    #[tokio::test]
    async fn console_open_takes_the_voice_path_back_from_an_external_channel() {
        let host = Host::new(true, false);
        let arbiter = Arc::new(LiveOwnerArbiter::default());
        let controller =
            ConsoleVoiceController::new(host.clone()).with_arbiter(Arc::clone(&arbiter));
        let closes = Arc::new(std::sync::Mutex::new(Vec::new()));
        let recorder = Arc::clone(&closes);
        let closer: LiveOwnerCloser = Arc::new(move |reason, channel| {
            let recorder = Arc::clone(&recorder);
            Box::pin(async move {
                recorder.lock().expect("closes").push((reason, channel));
                Ok(())
            })
        });
        arbiter
            .engage(external_owner("agent-b"), closer)
            .await
            .expect("external engagement");

        let readiness = controller
            .readiness("alice", "agent-a")
            .await
            .expect("readiness");
        assert!(!readiness.available);
        assert_eq!(readiness.reason, Some("external_live_active"));
        assert_eq!(
            readiness.to_wire("agent-a"),
            serde_json::json!({
                "identity": "agent-a",
                "available": false,
                "reason": "external_live_active",
                "holder": { "identity": "agent-b", "channel_id": "agent-b-channel" },
            })
        );
        assert!(
            host.checked_identities.lock().await.is_empty(),
            "readiness held by the external channel must not probe the console host"
        );

        controller
            .open("alice", request())
            .await
            .expect("open preempts");
        assert_eq!(
            closes.lock().expect("closes").as_slice(),
            &[(
                LiveSupersededReason::SupersededByConsoleVoice,
                Some("agent-b-channel".to_string())
            )]
        );
        assert_eq!(
            arbiter.close_reason("agent-b-channel"),
            Some(LiveSupersededReason::SupersededByConsoleVoice)
        );
        assert_eq!(
            arbiter.holder().await.map(|owner| owner.kind()),
            Some("console_voice")
        );
        let readiness = controller
            .readiness("alice", "agent-a")
            .await
            .expect("readiness");
        assert!(readiness.available);
        assert_eq!(
            readiness.to_wire("agent-a"),
            serde_json::json!({"identity":"agent-a","available":true})
        );

        // Ending the call frees the path again.
        controller.close("alice", request()).await.expect("close");
        assert!(arbiter.holder().await.is_none());
    }

    #[tokio::test]
    async fn a_console_open_that_loses_the_race_while_opening_closes_what_it_opened() {
        // The host blocks inside open until the test releases it.
        let host = Host::new(true, true);
        let arbiter = Arc::new(LiveOwnerArbiter::default());
        let controller =
            ConsoleVoiceController::new(host.clone()).with_arbiter(Arc::clone(&arbiter));
        let opening = {
            let controller = controller.clone();
            tokio::spawn(async move { controller.open("alice", request()).await })
        };
        host.started.notified().await;
        assert_eq!(
            arbiter.holder().await,
            Some(LiveOwner::ConsoleVoice {
                principal: "alice".to_string(),
                identity: "agent-a".to_string(),
                channel_id: None,
            }),
            "the console engaged before its provider open completed"
        );
        // The external door wins while the console open is still in flight.
        let (_, preempted) = arbiter
            .engage(external_owner("agent-b"), noop_closer())
            .await
            .expect("external engagement");
        assert_eq!(preempted.map(|owner| owner.kind()), Some("console_voice"));
        assert_eq!(
            host.session.close_calls.load(Ordering::SeqCst),
            0,
            "nothing to close yet"
        );
        // The console open now completes: its channel must not stay live
        // beside the external owner.
        host.permit.add_permits(1);
        let result = opening.await.expect("open task");
        assert_eq!(
            result,
            Err(VoiceError::Superseded(
                LiveSupersededReason::SupersededByExternalLive
            ))
        );
        tokio::time::timeout(Duration::from_secs(5), async {
            while host.session.close_calls.load(Ordering::SeqCst) == 0 {
                tokio::task::yield_now().await;
            }
        })
        .await
        .expect("the late console channel is closed");
        assert_eq!(
            arbiter.holder().await.map(|owner| owner.kind()),
            Some("external_live")
        );
        assert_eq!(
            controller.replacement_required("alice", request()).await,
            Err(VoiceError::Superseded(
                LiveSupersededReason::SupersededByExternalLive
            ))
        );
    }

    #[tokio::test]
    async fn a_dead_external_channel_never_locks_the_console_out() {
        let host = Host::new(true, false);
        let arbiter = Arc::new(LiveOwnerArbiter::default());
        let live: Arc<std::sync::Mutex<std::collections::HashSet<String>>> = Arc::default();
        let probe = Arc::clone(&live);
        arbiter.set_liveness(Arc::new(move |channel| {
            let probe = Arc::clone(&probe);
            Box::pin(async move { probe.lock().expect("live").contains(&channel) })
        }));
        let controller =
            ConsoleVoiceController::new(host.clone()).with_arbiter(Arc::clone(&arbiter));
        // The console's own channel is live once it opens.
        live.lock()
            .expect("live")
            .insert("test-channel".to_string());
        // The external closer fails the way the real one would for a channel
        // the machine no longer knows.
        let failing: LiveOwnerCloser =
            Arc::new(|_, _| Box::pin(async { Err("BindingMismatch".to_string()) }));
        arbiter
            .engage(external_owner("agent-b"), failing)
            .await
            .expect("external engagement");
        live.lock()
            .expect("live")
            .insert("agent-b-channel".to_string());
        assert_eq!(
            controller
                .readiness("alice", "agent-a")
                .await
                .expect("readiness")
                .reason,
            Some("external_live_active")
        );
        // reachyd's socket drops; meerkat-live closes the channel by itself.
        live.lock().expect("live").remove("agent-b-channel");
        let readiness = controller
            .readiness("alice", "agent-a")
            .await
            .expect("readiness");
        assert!(readiness.available, "{readiness:?}");
        assert!(readiness.reason.is_none());
        controller
            .open("alice", request())
            .await
            .expect("console open over a dead channel");
        assert_eq!(
            arbiter.holder().await.map(|owner| owner.kind()),
            Some("console_voice")
        );
    }

    #[tokio::test]
    async fn a_failed_external_close_fails_the_console_open_closed() {
        let host = Host::new(true, false);
        let arbiter = Arc::new(LiveOwnerArbiter::default());
        let controller =
            ConsoleVoiceController::new(host.clone()).with_arbiter(Arc::clone(&arbiter));
        let failing: LiveOwnerCloser =
            Arc::new(|_, _| Box::pin(async { Err("provider close hung".to_string()) }));
        arbiter
            .engage(external_owner("agent-b"), failing)
            .await
            .expect("external engagement");
        assert_eq!(
            controller.open("alice", request()).await,
            Err(VoiceError::HostFailed)
        );
        assert_eq!(
            host.opens.load(Ordering::SeqCst),
            0,
            "no provider open behind a live owner"
        );
        assert_eq!(
            arbiter.holder().await.map(|owner| owner.kind()),
            Some("external_live")
        );
    }

    #[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));
        }
    }
}