kumiho-construct 2026.5.11

Construct — memory-native AI agent runtime powered by Kumiho
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
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
//! HTTP client for the Kumiho FastAPI REST API.
//!
//! Wraps `reqwest` calls to the Kumiho service, providing typed methods for
//! item CRUD, revisions, search, and space management.  Used by the agent
//! management API routes (`/api/agents`) and skill management routes
//! (`/api/skills`).

use crate::config::Config;
use axum::http::{HeaderValue, StatusCode, header};
use axum::response::{IntoResponse, Json, Response};
use rand::RngExt;
use reqwest::Client;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::time::{Duration, Instant};

/// Build a `KumihoClient` from the top-level `Config`.
///
/// Reads `kumiho.api_url` for the base URL and `KUMIHO_SERVICE_TOKEN` env var
/// for the service token. Used by CLI commands (`construct memory`,
/// `construct migrate openclaw`) that need a Kumiho client without an
/// `AppState`.
pub fn build_client_from_config(config: &Config) -> KumihoClient {
    let base_url = config.kumiho.api_url.clone();
    let service_token = std::env::var("KUMIHO_SERVICE_TOKEN").unwrap_or_default();
    KumihoClient::new(base_url, service_token)
}

/// Convert a human-readable name to a kref-safe slug (lowercase, hyphens, no spaces).
pub fn slugify(name: &str) -> String {
    name.trim()
        .to_lowercase()
        .chars()
        .map(|c| {
            if c.is_alphanumeric() || c == '-' {
                c
            } else {
                '-'
            }
        })
        .collect::<String>()
        .split('-')
        .filter(|s| !s.is_empty())
        .collect::<Vec<_>>()
        .join("-")
}

fn item_kref_without_selectors(kref: &str) -> &str {
    kref.split_once('?').map_or(kref, |(base, _)| base)
}

/// Kumiho FastAPI client.
#[derive(Clone)]
pub struct KumihoClient {
    client: Client,
    base_url: String,
    service_token: String,
}

// ── Response types (match Kumiho FastAPI JSON) ──────────────────────────

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ItemResponse {
    pub kref: String,
    pub name: String,
    pub item_name: String,
    pub kind: String,
    #[serde(default)]
    pub deprecated: bool,
    pub created_at: Option<String>,
    pub author: Option<String>,
    pub username: Option<String>,
    pub author_display: Option<String>,
    #[serde(default)]
    pub metadata: HashMap<String, String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RevisionResponse {
    pub kref: String,
    pub item_kref: String,
    pub number: i32,
    #[serde(default)]
    pub latest: bool,
    #[serde(default)]
    pub tags: Vec<String>,
    #[serde(default)]
    pub metadata: HashMap<String, String>,
    #[serde(default)]
    pub deprecated: bool,
    pub created_at: Option<String>,
    pub author: Option<String>,
    pub username: Option<String>,
    pub author_display: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BatchRevisionsResponse {
    pub revisions: Vec<RevisionResponse>,
    pub not_found: Vec<String>,
    pub requested_count: i32,
    pub found_count: i32,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SearchResult {
    pub item: ItemResponse,
    #[serde(default)]
    pub score: f64,
}

// ── Bundle response types ────────────────────────────────────────────────

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BundleMemberInfo {
    pub item_kref: String,
    pub added_at: Option<String>,
    pub added_by: Option<String>,
    pub added_in_revision: Option<i32>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BundleMembersResponse {
    pub members: Vec<BundleMemberInfo>,
    pub total_count: Option<i32>,
}

// ── Artifact response types ────────────────────────────────────────────

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ArtifactResponse {
    pub kref: String,
    pub name: String,
    pub location: String,
    pub revision_kref: String,
    pub item_kref: Option<String>,
    #[serde(default)]
    pub deprecated: bool,
    pub created_at: Option<String>,
    pub author: Option<String>,
    pub username: Option<String>,
    pub author_display: Option<String>,
    #[serde(default)]
    pub metadata: HashMap<String, String>,
}

// ── Edge response types ─────────────────────────────────────────────────

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EdgeResponse {
    pub source_kref: String,
    pub target_kref: String,
    pub edge_type: String,
    pub created_at: Option<String>,
    #[serde(default)]
    pub metadata: Option<HashMap<String, String>>,
}

// ── Space response types ───────────────────────────────────────────────

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SpaceResponse {
    pub path: String,
    pub name: String,
    pub parent_path: Option<String>,
    pub created_at: Option<String>,
    pub author: Option<String>,
    pub username: Option<String>,
    pub author_display: Option<String>,
}

// ── Error type ──────────────────────────────────────────────────────────

#[derive(Debug, thiserror::Error)]
pub enum KumihoError {
    #[error("Kumiho service unreachable: {0}")]
    Unreachable(#[from] reqwest::Error),

    #[error("Kumiho returned {status}: {body}")]
    Api { status: u16, body: String },

    #[error("Kumiho upstream temporarily unavailable (HTTP {status} after {attempts} attempts)")]
    UpstreamUnavailable { status: u16, attempts: u32 },

    #[error("Unexpected response: {0}")]
    Decode(String),
}

pub type Result<T> = std::result::Result<T, KumihoError>;

/// Statuses we treat as a "transient upstream blip" — gateway/CDN-style 5xx
/// codes. Pure 500 (application error) and 501 (not implemented) are NOT
/// retried: those usually mean a real bug, not a connectivity hiccup.
pub(crate) fn is_retryable_status(status: u16) -> bool {
    matches!(status, 502 | 503 | 504 | 520 | 522 | 524)
}

/// Per-attempt request timeout used by the retry helper. Short enough that
/// 3 attempts + jittered backoffs fit inside `TOTAL_BUDGET`.
const PER_ATTEMPT_TIMEOUT: Duration = Duration::from_secs(5);

/// End-to-end wall-time cap for `send_with_retry`. A hung upstream cannot
/// hold a single gateway request open longer than this.
const TOTAL_BUDGET: Duration = Duration::from_secs(15);

/// Would sleeping `delay_ms` still leave room before `deadline`? Used by the
/// retry helper to give up early when there isn't enough budget left to
/// usefully retry.
fn deadline_allows(deadline: Instant, delay_ms: u64) -> bool {
    let now = Instant::now();
    if now >= deadline {
        return false;
    }
    let remaining = deadline.saturating_duration_since(now);
    remaining > Duration::from_millis(delay_ms)
}

/// Sleep for `base_ms` ± 20% to avoid thundering-herd retry waves.
async fn sleep_with_jitter(base_ms: u64) {
    let jitter_range = (base_ms as f64 * 0.2) as i64;
    let jitter: i64 = if jitter_range > 0 {
        rand::rng().random_range(-jitter_range..=jitter_range)
    } else {
        0
    };
    let delay = (base_ms as i64 + jitter).max(0) as u64;
    tokio::time::sleep(Duration::from_millis(delay)).await;
}

/// Heuristic: does this body look like an HTML error page (e.g. Cloudflare's
/// 2KB 502 splash)? Used to keep upstream HTML out of our JSON error responses
/// and out of structured logs. `pub(crate)` so the generic `/api/kumiho/*`
/// proxy can detect HTML bodies without going through `KumihoClient`.
pub(crate) fn looks_like_html_body(body: &str, content_type: Option<&str>) -> bool {
    if let Some(ct) = content_type {
        if ct.to_ascii_lowercase().starts_with("text/html") {
            return true;
        }
    }
    let trimmed = body.trim_start();
    let head: String = trimmed
        .chars()
        .take(16)
        .collect::<String>()
        .to_ascii_lowercase();
    head.starts_with("<!doctype") || head.starts_with("<html")
}

/// Map any `KumihoError` to a clean JSON HTTP response. Centralised so every
/// gateway route returns the same shape. Upstream HTML never leaks past this
/// boundary — `Api` errors with HTML bodies were trimmed in `check_response`.
pub fn kumiho_error_to_response(err: KumihoError) -> Response {
    match err {
        KumihoError::Unreachable(e) => {
            tracing::warn!(error = %e, "Kumiho unreachable");
            // DNS/connect failures map to 503 (service unavailable), not 502:
            // recovery typically takes longer than a per-request upstream blip,
            // so we hint a slightly longer `Retry-After`.
            let mut resp = (
                StatusCode::SERVICE_UNAVAILABLE,
                Json(serde_json::json!({
                    "error": "Kumiho cloud unreachable",
                    "error_code": "kumiho_unreachable",
                    "retry_after_seconds": 10,
                })),
            )
                .into_response();
            resp.headers_mut()
                .insert(header::RETRY_AFTER, HeaderValue::from_static("10"));
            resp
        }
        KumihoError::UpstreamUnavailable { status, attempts } => {
            tracing::warn!(
                upstream_status = status,
                attempts = attempts,
                "Kumiho upstream unavailable after retries"
            );
            let mut resp = (
                StatusCode::SERVICE_UNAVAILABLE,
                Json(serde_json::json!({
                    "error": "Kumiho cloud temporarily unavailable",
                    "error_code": "kumiho_upstream_unavailable",
                    "upstream_status": status,
                    "attempts": attempts,
                    "retry_after_seconds": 5,
                })),
            )
                .into_response();
            resp.headers_mut()
                .insert(header::RETRY_AFTER, HeaderValue::from_static("5"));
            resp
        }
        KumihoError::Api { status, body } => {
            // 5xx that slipped past the retry layer (e.g. a non-retryable 500)
            // — still treat as "temporarily unavailable" so we never forward
            // upstream bodies to the client.
            if status >= 500 {
                tracing::warn!(upstream_status = status, body = %body, "Kumiho 5xx (non-retried)");
                let mut resp = (
                    StatusCode::SERVICE_UNAVAILABLE,
                    Json(serde_json::json!({
                        "error": "Kumiho cloud temporarily unavailable",
                        "error_code": "kumiho_upstream_unavailable",
                        "upstream_status": status,
                        "attempts": 1,
                        "retry_after_seconds": 5,
                    })),
                )
                    .into_response();
                resp.headers_mut()
                    .insert(header::RETRY_AFTER, HeaderValue::from_static("5"));
                return resp;
            }
            // Keep current behaviour for 4xx — callers branch on 404/409/etc.
            // 401/403 from Kumiho are rewritten to 502 so the dashboard doesn't
            // confuse them with pairing auth failures and force a re-pair.
            let code = if status == 401 || status == 403 {
                StatusCode::BAD_GATEWAY
            } else {
                StatusCode::from_u16(status).unwrap_or(StatusCode::BAD_GATEWAY)
            };
            (
                code,
                Json(serde_json::json!({
                    "error": format!("Kumiho upstream: {body}"),
                    "error_code": "kumiho_upstream_error",
                    "upstream_status": status,
                })),
            )
                .into_response()
        }
        KumihoError::Decode(msg) => (
            StatusCode::BAD_GATEWAY,
            Json(serde_json::json!({
                "error": format!("Bad response from Kumiho: {msg}"),
                "error_code": "kumiho_decode_error",
            })),
        )
            .into_response(),
    }
}

// ── Request body types ──────────────────────────────────────────────────

#[derive(Serialize)]
struct CreateProjectBody {
    name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    description: Option<String>,
}

#[derive(Serialize)]
struct CreateSpaceBody {
    parent_path: String,
    name: String,
}

#[derive(Serialize)]
struct CreateItemBody {
    space_path: String,
    item_name: String,
    kind: String,
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    metadata: HashMap<String, String>,
}

#[derive(Serialize)]
struct CreateRevisionBody {
    item_kref: String,
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    metadata: HashMap<String, String>,
}

#[derive(Serialize)]
struct CreateBundleBody {
    space_path: String,
    bundle_name: String,
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    metadata: HashMap<String, String>,
}

#[derive(Serialize)]
struct BundleMemberBody {
    bundle_kref: String,
    item_kref: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    metadata: Option<HashMap<String, String>>,
}

#[derive(Serialize)]
struct RemoveBundleMemberBody {
    bundle_kref: String,
    item_kref: String,
}

#[derive(Serialize)]
struct CreateEdgeBody {
    source_revision_kref: String,
    target_revision_kref: String,
    edge_type: String,
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    metadata: HashMap<String, String>,
}

#[derive(Serialize)]
struct CreateArtifactBody {
    revision_kref: String,
    name: String,
    location: String,
    #[serde(skip_serializing_if = "HashMap::is_empty")]
    metadata: HashMap<String, String>,
}

impl KumihoClient {
    /// Create a new Kumiho client.
    ///
    /// `service_token` is sent as `X-Kumiho-Token` on every request.
    pub fn new(base_url: String, service_token: String) -> Self {
        let client = Client::builder()
            .timeout(std::time::Duration::from_secs(20))
            .connect_timeout(std::time::Duration::from_secs(5))
            .pool_max_idle_per_host(32)
            .build()
            .unwrap_or_else(|_| Client::new());
        Self {
            client,
            base_url: base_url.trim_end_matches('/').to_string(),
            service_token,
        }
    }

    /// Access the inner HTTP client (for proxy use).
    pub fn client(&self) -> &Client {
        &self.client
    }

    // ── Helpers ─────────────────────────────────────────────────────

    fn url(&self, path: &str) -> String {
        format!("{}/api/v1{}", self.base_url, path)
    }

    async fn check_response(&self, resp: reqwest::Response) -> Result<reqwest::Response> {
        let status = resp.status();
        if status.is_success() {
            Ok(resp)
        } else {
            let code = status.as_u16();
            let content_type = resp
                .headers()
                .get(reqwest::header::CONTENT_TYPE)
                .and_then(|v| v.to_str().ok())
                .map(str::to_owned);
            let body = resp.text().await.unwrap_or_default();
            let body = if looks_like_html_body(&body, content_type.as_deref()) {
                // Log once at warn so the full body is still debuggable from
                // the gateway logs, then trim it out of the in-memory error
                // before any caller can forward it to the dashboard.
                tracing::warn!(
                    status = code,
                    content_type = content_type.as_deref().unwrap_or(""),
                    body_preview = body.chars().take(256).collect::<String>(),
                    "Kumiho returned HTML error body (trimming before propagation)"
                );
                "<HTML error page — see gateway logs>".to_string()
            } else {
                body
            };
            Err(KumihoError::Api { status: code, body })
        }
    }

    /// Send a Kumiho request with bounded retries on transient upstream
    /// failures. The caller passes a closure that re-builds the
    /// `RequestBuilder` on each attempt, since `reqwest::RequestBuilder` is
    /// consumed by `.send()`.
    ///
    /// Retry policy (for safe, idempotent reads — see `send_no_retry` for
    /// POST/PUT/PATCH/DELETE write paths):
    /// - `reqwest::Error` (network / timeout / dropped connection): retry.
    /// - HTTP 502 / 503 / 504 / 520 / 522 / 524: retry.
    /// - Any other non-2xx (incl. 500/501): no retry, returned via
    ///   [`check_response`] as `KumihoError::Api`.
    /// - Up to 3 attempts. Delays: 500ms, 1500ms (jittered ±20%).
    /// - Each attempt is capped at `PER_ATTEMPT_TIMEOUT` (5s) — short enough
    ///   that 3 retries + backoff fit inside `TOTAL_BUDGET` (15s).
    /// - Total wall time across attempts is capped at `TOTAL_BUDGET`; if the
    ///   remaining budget is shorter than the next backoff, retries stop and
    ///   we surface `UpstreamUnavailable` immediately.
    ///
    /// On retry-budget exhaustion against a 5xx, returns
    /// [`KumihoError::UpstreamUnavailable`] rather than `Api { body: ... }`
    /// so the (potentially HTML) upstream body never propagates.
    async fn send_with_retry<F>(&self, build: F) -> Result<reqwest::Response>
    where
        F: Fn() -> reqwest::RequestBuilder,
    {
        self.send_with_retry_deadline(build, Instant::now() + TOTAL_BUDGET)
            .await
    }

    /// Variant of [`send_with_retry`] that shares a deadline with the caller.
    /// Used by methods that issue multiple retried calls (e.g.
    /// `get_published_or_latest`) so the combined wall time is still bounded
    /// by `TOTAL_BUDGET`, not 2× it.
    async fn send_with_retry_deadline<F>(
        &self,
        build: F,
        deadline: Instant,
    ) -> Result<reqwest::Response>
    where
        F: Fn() -> reqwest::RequestBuilder,
    {
        const MAX_ATTEMPTS: u32 = 3;
        const BASE_DELAYS_MS: [u64; 2] = [500, 1500];

        let mut last_status: Option<u16> = None;
        for attempt in 1..=MAX_ATTEMPTS {
            // Cap each attempt at the smaller of `PER_ATTEMPT_TIMEOUT` and the
            // remaining budget, so a hung upstream can't blow past the
            // end-to-end deadline.
            let now = Instant::now();
            if now >= deadline {
                break;
            }
            let attempt_cap = PER_ATTEMPT_TIMEOUT.min(deadline.saturating_duration_since(now));
            let attempt_request = build().timeout(attempt_cap);
            let result = attempt_request.send().await;
            match result {
                Ok(resp) => {
                    let status = resp.status().as_u16();
                    if is_retryable_status(status) {
                        last_status = Some(status);
                        if attempt < MAX_ATTEMPTS {
                            let delay_ms = BASE_DELAYS_MS[(attempt - 1) as usize];
                            if !deadline_allows(deadline, delay_ms) {
                                drop(resp);
                                break;
                            }
                            tracing::warn!(
                                attempt = attempt,
                                max_attempts = MAX_ATTEMPTS,
                                upstream_status = status,
                                "Kumiho returned transient 5xx; retrying"
                            );
                            drop(resp);
                            sleep_with_jitter(delay_ms).await;
                            continue;
                        }
                        // Final attempt still returned a retryable 5xx — drop
                        // the (likely HTML) body and surface a clean error.
                        drop(resp);
                        break;
                    }
                    return Ok(resp);
                }
                Err(e) => {
                    if attempt < MAX_ATTEMPTS {
                        let delay_ms = BASE_DELAYS_MS[(attempt - 1) as usize];
                        if !deadline_allows(deadline, delay_ms) {
                            return Err(KumihoError::Unreachable(e));
                        }
                        tracing::warn!(
                            attempt = attempt,
                            max_attempts = MAX_ATTEMPTS,
                            error = %e,
                            "Kumiho request failed (network); retrying"
                        );
                        sleep_with_jitter(delay_ms).await;
                        continue;
                    }
                    return Err(KumihoError::Unreachable(e));
                }
            }
        }

        // Budget exhausted on a retryable status. Drop the body — it's almost
        // certainly the upstream HTML splash page we don't want to forward.
        Err(KumihoError::UpstreamUnavailable {
            status: last_status.unwrap_or(502),
            attempts: MAX_ATTEMPTS,
        })
    }

    /// Single-attempt send used by write methods (POST/PUT/PATCH/DELETE).
    /// We deliberately skip the retry loop because Kumiho's API does NOT
    /// honour idempotency keys; retrying a create that succeeded but whose
    /// response was dropped (or rewritten to 502 by a CDN) would create a
    /// duplicate item. Prefer a clean error over a duplicate-write race.
    ///
    /// Still trims HTML bodies via `check_response`, and still surfaces
    /// retryable 5xx as `UpstreamUnavailable` (so the central mapper returns
    /// the same 503 shape as for retried paths).
    async fn send_no_retry<F>(&self, build: F) -> Result<reqwest::Response>
    where
        F: FnOnce() -> reqwest::RequestBuilder,
    {
        let result = build().timeout(PER_ATTEMPT_TIMEOUT).send().await;
        match result {
            Ok(resp) => {
                let status = resp.status().as_u16();
                if is_retryable_status(status) {
                    // Drop the body — it's almost certainly the upstream HTML
                    // splash page we don't want to forward.
                    drop(resp);
                    return Err(KumihoError::UpstreamUnavailable {
                        status,
                        attempts: 1,
                    });
                }
                Ok(resp)
            }
            Err(e) => Err(KumihoError::Unreachable(e)),
        }
    }

    // ── Project management ─────────────────────────────────────────

    /// Ensure a project exists (idempotent).  Ignores 409 Conflict (already exists).
    pub async fn ensure_project(&self, project_name: &str) -> Result<()> {
        let body = CreateProjectBody {
            name: project_name.to_string(),
            description: None,
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/projects"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let status = resp.status().as_u16();
        if resp.status().is_success() || status == 409 {
            Ok(())
        } else {
            // Defer to check_response so HTML bodies get trimmed here too.
            let _ = self.check_response(resp).await?;
            Ok(())
        }
    }

    // ── Space management ────────────────────────────────────────────

    /// Ensure a space exists (idempotent).  Ignores 409 Conflict (already exists).
    pub async fn ensure_space(&self, project: &str, space_name: &str) -> Result<()> {
        let body = CreateSpaceBody {
            parent_path: format!("/{project}"),
            name: space_name.to_string(),
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/spaces"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let status = resp.status().as_u16();
        // 409 = already exists — that's fine
        if resp.status().is_success() || status == 409 {
            Ok(())
        } else {
            let _ = self.check_response(resp).await?;
            Ok(())
        }
    }

    /// Ensure a nested space exists under a parent (idempotent).
    pub async fn ensure_child_space(
        &self,
        _project: &str,
        parent_path: &str,
        space_name: &str,
    ) -> Result<()> {
        let body = CreateSpaceBody {
            parent_path: parent_path.to_string(),
            name: space_name.to_string(),
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/spaces"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let status = resp.status().as_u16();
        if resp.status().is_success() || status == 409 {
            Ok(())
        } else {
            let _ = self.check_response(resp).await?;
            Ok(())
        }
    }

    /// List spaces under a parent path (optionally recursive).
    pub async fn list_spaces(
        &self,
        parent_path: &str,
        recursive: bool,
    ) -> Result<Vec<SpaceResponse>> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/spaces"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("parent_path", parent_path),
                        ("recursive", if recursive { "true" } else { "false" }),
                    ])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<Vec<SpaceResponse>>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    // ── Item CRUD ───────────────────────────────────────────────────

    /// List items in a space.
    pub async fn list_items(
        &self,
        space_path: &str,
        include_deprecated: bool,
    ) -> Result<Vec<ItemResponse>> {
        self.list_items_paged(space_path, include_deprecated, 100, 0)
            .await
    }

    /// List items with explicit pagination.
    pub async fn list_items_paged(
        &self,
        space_path: &str,
        include_deprecated: bool,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<ItemResponse>> {
        let limit_s = limit.to_string();
        let offset_s = offset.to_string();
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/items"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("space_path", space_path),
                        (
                            "include_deprecated",
                            if include_deprecated { "true" } else { "false" },
                        ),
                        ("limit", limit_s.as_str()),
                        ("offset", offset_s.as_str()),
                    ])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<Vec<ItemResponse>>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// List items in a space filtered by name substring.
    ///
    /// Uses the `name_filter` query parameter to reduce result size,
    /// staying under Kumiho's gRPC message limit for large spaces.
    pub async fn list_items_filtered(
        &self,
        space_path: &str,
        name_filter: &str,
        include_deprecated: bool,
    ) -> Result<Vec<ItemResponse>> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/items"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("space_path", space_path),
                        ("name_filter", name_filter),
                        (
                            "include_deprecated",
                            if include_deprecated { "true" } else { "false" },
                        ),
                    ])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<Vec<ItemResponse>>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Create an item.
    pub async fn create_item(
        &self,
        space_path: &str,
        item_name: &str,
        kind: &str,
        metadata: HashMap<String, String>,
    ) -> Result<ItemResponse> {
        let body = CreateItemBody {
            space_path: space_path.to_string(),
            item_name: item_name.to_string(),
            kind: kind.to_string(),
            metadata,
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/items"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ItemResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Deprecate or restore an item.
    pub async fn deprecate_item(&self, kref: &str, deprecated: bool) -> Result<ItemResponse> {
        let item_kref = item_kref_without_selectors(kref);
        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/items/deprecate"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("kref", item_kref),
                        ("deprecated", if deprecated { "true" } else { "false" }),
                    ])
            })
            .await?;

        let resp = match self.check_response(resp).await {
            Ok(resp) => resp,
            Err(KumihoError::Api { status, .. }) if status == 404 && deprecated => {
                self.delete_item_with_force(item_kref, false).await?;
                return self.get_item_by_kref(item_kref).await;
            }
            Err(e) => return Err(e),
        };
        resp.json::<ItemResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get an item by kref.
    pub async fn get_item_by_kref(&self, kref: &str) -> Result<ItemResponse> {
        let item_kref = item_kref_without_selectors(kref);
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/items/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("kref", item_kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ItemResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Delete an item (force).
    pub async fn delete_item(&self, kref: &str) -> Result<()> {
        self.delete_item_with_force(kref, true).await
    }

    async fn delete_item_with_force(&self, kref: &str, force: bool) -> Result<()> {
        let item_kref = item_kref_without_selectors(kref);
        let resp = self
            .send_no_retry(|| {
                self.client
                    .delete(self.url("/items/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("kref", item_kref),
                        ("force", if force { "true" } else { "false" }),
                    ])
            })
            .await?;

        let _ = self.check_response(resp).await?;
        Ok(())
    }

    /// Full-text search across items.
    pub async fn search_items(
        &self,
        query: &str,
        context: &str,
        kind: &str,
        include_deprecated: bool,
    ) -> Result<Vec<SearchResult>> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/items/fulltext-search"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("query", query),
                        ("context", context),
                        ("kind", kind),
                        (
                            "include_deprecated",
                            if include_deprecated { "true" } else { "false" },
                        ),
                    ])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<Vec<SearchResult>>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    // ── Revisions ───────────────────────────────────────────────────

    /// Create a new revision on an item.
    pub async fn create_revision(
        &self,
        item_kref: &str,
        metadata: HashMap<String, String>,
    ) -> Result<RevisionResponse> {
        let body = CreateRevisionBody {
            item_kref: item_kref.to_string(),
            metadata,
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/revisions"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<RevisionResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// List all revisions for an item, ordered by number.
    ///
    /// Backed by `GET /api/v1/revisions?item_kref=...` on Kumiho. Used by the
    /// editor's revision-history strip (Architect feature).
    pub async fn list_item_revisions(&self, item_kref: &str) -> Result<Vec<RevisionResponse>> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/revisions"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("item_kref", item_kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<Vec<RevisionResponse>>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Tag a revision (e.g. "published").
    pub async fn tag_revision(&self, revision_kref: &str, tag: &str) -> Result<()> {
        let body = serde_json::json!({ "tag": tag });
        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/revisions/tags"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("kref", revision_kref)])
                    .json(&body)
            })
            .await?;

        let _ = self.check_response(resp).await?;
        Ok(())
    }

    /// Deprecate or restore a revision.
    pub async fn deprecate_revision(
        &self,
        revision_kref: &str,
        deprecated: bool,
    ) -> Result<RevisionResponse> {
        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/revisions/deprecate"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("kref", revision_kref),
                        ("deprecated", if deprecated { "true" } else { "false" }),
                    ])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<RevisionResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get a revision by tag (e.g. "published").
    pub async fn get_revision_by_tag(
        &self,
        item_kref: &str,
        tag: &str,
    ) -> Result<RevisionResponse> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/revisions/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("kref", item_kref), ("t", tag)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<RevisionResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get a specific revision by its own revision_kref (e.g. "…?r=5").
    /// The Kumiho server's `/revisions/by-kref` endpoint parses the `?r=N`
    /// suffix out of the kref and returns that exact revision's metadata.
    pub async fn get_revision(&self, revision_kref: &str) -> Result<RevisionResponse> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/revisions/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("kref", revision_kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<RevisionResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get the latest revision for an item.
    pub async fn get_latest_revision(&self, item_kref: &str) -> Result<RevisionResponse> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/revisions/latest"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("item_kref", item_kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<RevisionResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get the published revision, falling back to latest.
    ///
    /// Both inner calls share ONE retry budget rather than each getting their
    /// own — otherwise a degraded upstream could hold a single gateway
    /// request open for ~2× `TOTAL_BUDGET`.
    pub async fn get_published_or_latest(&self, item_kref: &str) -> Result<RevisionResponse> {
        let deadline = Instant::now() + TOTAL_BUDGET;
        let by_tag = self
            .send_with_retry_deadline(
                || {
                    self.client
                        .get(self.url("/revisions/by-kref"))
                        .header("X-Kumiho-Token", &self.service_token)
                        .query(&[("kref", item_kref), ("t", "published")])
                },
                deadline,
            )
            .await;
        match by_tag {
            Ok(resp) => {
                let resp = self.check_response(resp).await?;
                resp.json::<RevisionResponse>()
                    .await
                    .map_err(|e| KumihoError::Decode(e.to_string()))
            }
            Err(_) => {
                let resp = self
                    .send_with_retry_deadline(
                        || {
                            self.client
                                .get(self.url("/revisions/latest"))
                                .header("X-Kumiho-Token", &self.service_token)
                                .query(&[("item_kref", item_kref)])
                        },
                        deadline,
                    )
                    .await?;
                let resp = self.check_response(resp).await?;
                resp.json::<RevisionResponse>()
                    .await
                    .map_err(|e| KumihoError::Decode(e.to_string()))
            }
        }
    }

    /// Batch fetch revisions for multiple items by tag in a single HTTP call.
    ///
    /// Returns a map of item_kref → RevisionResponse for items that were found.
    pub async fn batch_get_revisions(
        &self,
        item_krefs: &[String],
        tag: &str,
    ) -> Result<HashMap<String, RevisionResponse>> {
        if item_krefs.is_empty() {
            return Ok(HashMap::new());
        }

        let body = serde_json::json!({
            "item_krefs": item_krefs,
            "tag": tag,
            "allow_partial": true,
        });

        // POST used as a read (batch fetch by body) — but per the unsafe-write
        // policy we still skip retry. A duplicate fetch is harmless, but the
        // policy is enforced uniformly to avoid drift if the endpoint ever
        // grows side-effects on Kumiho's side.
        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/revisions/batch"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        let batch: BatchRevisionsResponse = resp
            .json()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))?;

        let mut map = HashMap::with_capacity(batch.revisions.len());
        for rev in batch.revisions {
            map.insert(rev.item_kref.clone(), rev);
        }
        Ok(map)
    }

    // ── Skill convenience methods ──────────────────────────────────

    /// List skills in the given project's Skills space.
    pub async fn list_skills(
        &self,
        project: &str,
        include_deprecated: bool,
    ) -> Result<Vec<ItemResponse>> {
        let space_path = format!("/{project}/Skills");
        self.list_items(&space_path, include_deprecated).await
    }

    /// Search skills by query within the given project.
    ///
    /// Searches both the canonical [`crate::skills::registration::SKILL_ITEM_KIND`]
    /// and the legacy [`crate::skills::registration::LEGACY_SKILL_ITEM_KIND`]
    /// so items created before the kind rename remain discoverable.
    /// Results from the two queries are unioned and de-duplicated by
    /// `item.kref`; on a successful new-kind query, a failure on the
    /// legacy query is logged + ignored (the new-kind results are still
    /// returned).
    pub async fn search_skills(
        &self,
        query: &str,
        project: &str,
        include_deprecated: bool,
    ) -> Result<Vec<SearchResult>> {
        self.search_items_with_legacy(
            query,
            project,
            crate::skills::registration::SKILL_ITEM_KIND,
            crate::skills::registration::LEGACY_SKILL_ITEM_KIND,
            include_deprecated,
        )
        .await
    }

    /// Run two `search_items` queries (one per kind) and union the
    /// results by `item.kref`.  On `legacy` failure we log + return the
    /// `primary` results; `primary` failures bubble up as before.
    ///
    /// Used for the skill-kind transition (`skill` ↔ `skilldef`); kept
    /// generic so the same shape can serve other kind renames.
    pub async fn search_items_with_legacy(
        &self,
        query: &str,
        context: &str,
        primary: &str,
        legacy: &str,
        include_deprecated: bool,
    ) -> Result<Vec<SearchResult>> {
        let primary_results = self
            .search_items(query, context, primary, include_deprecated)
            .await?;
        let legacy_results = match self
            .search_items(query, context, legacy, include_deprecated)
            .await
        {
            Ok(r) => r,
            Err(e) => {
                tracing::warn!(
                    primary = primary,
                    legacy = legacy,
                    context = context,
                    error = ?e,
                    "search_items_with_legacy: legacy-kind query failed; \
                     returning primary results only",
                );
                Vec::new()
            }
        };

        let mut seen: std::collections::HashSet<String> =
            std::collections::HashSet::with_capacity(primary_results.len() + legacy_results.len());
        let mut merged: Vec<SearchResult> =
            Vec::with_capacity(primary_results.len() + legacy_results.len());
        for r in primary_results.into_iter().chain(legacy_results) {
            if seen.insert(r.item.kref.clone()) {
                merged.push(r);
            }
        }
        Ok(merged)
    }

    /// Create a new skill item + first revision in the given project.
    pub async fn create_skill(
        &self,
        project: &str,
        name: &str,
        metadata: HashMap<String, String>,
    ) -> Result<(ItemResponse, RevisionResponse)> {
        self.ensure_space(project, "Skills").await.ok();
        let space_path = format!("/{project}/Skills");
        let item = self
            .create_item(
                &space_path,
                name,
                crate::skills::registration::SKILL_ITEM_KIND,
                HashMap::new(),
            )
            .await?;
        let revision = self.create_revision(&item.kref, metadata).await?;
        Ok((item, revision))
    }

    /// Deprecate or restore a skill.
    pub async fn deprecate_skill(&self, kref: &str, deprecated: bool) -> Result<ItemResponse> {
        self.deprecate_item(kref, deprecated).await
    }

    // ── Bundle methods ─────────────────────────────────────────────

    /// Create a bundle.
    pub async fn create_bundle(
        &self,
        space_path: &str,
        bundle_name: &str,
        metadata: HashMap<String, String>,
    ) -> Result<ItemResponse> {
        let body = CreateBundleBody {
            space_path: space_path.to_string(),
            bundle_name: bundle_name.to_string(),
            metadata,
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/bundles"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ItemResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get a bundle by kref.
    pub async fn get_bundle(&self, kref: &str) -> Result<ItemResponse> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/bundles/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("kref", kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ItemResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Delete a bundle (force).
    pub async fn delete_bundle(&self, kref: &str) -> Result<()> {
        let resp = self
            .send_no_retry(|| {
                self.client
                    .delete(self.url("/bundles/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("kref", kref), ("force", "true")])
            })
            .await?;

        let _ = self.check_response(resp).await?;
        Ok(())
    }

    /// Add a member to a bundle.
    pub async fn add_bundle_member(
        &self,
        bundle_kref: &str,
        item_kref: &str,
        metadata: HashMap<String, String>,
    ) -> Result<serde_json::Value> {
        let body = BundleMemberBody {
            bundle_kref: bundle_kref.to_string(),
            item_kref: item_kref.to_string(),
            metadata: if metadata.is_empty() {
                None
            } else {
                Some(metadata)
            },
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/bundles/members/add"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<serde_json::Value>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Remove a member from a bundle.
    pub async fn remove_bundle_member(
        &self,
        bundle_kref: &str,
        item_kref: &str,
    ) -> Result<serde_json::Value> {
        let body = RemoveBundleMemberBody {
            bundle_kref: bundle_kref.to_string(),
            item_kref: item_kref.to_string(),
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/bundles/members/remove"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<serde_json::Value>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// List members of a bundle.
    pub async fn list_bundle_members(&self, bundle_kref: &str) -> Result<BundleMembersResponse> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/bundles/members"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("bundle_kref", bundle_kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<BundleMembersResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    // ── Edge methods ───────────────────────────────────────────────

    /// Create an edge between two revisions.
    pub async fn create_edge(
        &self,
        source_kref: &str,
        target_kref: &str,
        edge_type: &str,
        metadata: HashMap<String, String>,
    ) -> Result<EdgeResponse> {
        let body = CreateEdgeBody {
            source_revision_kref: source_kref.to_string(),
            target_revision_kref: target_kref.to_string(),
            edge_type: edge_type.to_string(),
            metadata,
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/edges"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<EdgeResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// List edges for a revision.
    ///
    /// `direction`: 0 = outgoing, 1 = incoming, 2 = both.
    pub async fn list_edges(
        &self,
        revision_kref: &str,
        edge_type: Option<&str>,
        direction: Option<&str>,
    ) -> Result<Vec<EdgeResponse>> {
        // Map string directions to numeric values expected by Kumiho API
        let dir_num = direction.map(|d| match d {
            "outgoing" | "out" => "0",
            "incoming" | "in" => "1",
            "both" => "2",
            other => other, // pass through if already numeric
        });

        let mut query_params: Vec<(&str, &str)> = vec![("kref", revision_kref)];
        if let Some(et) = edge_type {
            query_params.push(("edge_type", et));
        }
        if let Some(dir) = dir_num.as_deref() {
            query_params.push(("direction", dir));
        }

        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/edges"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&query_params)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<Vec<EdgeResponse>>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Delete an edge.
    pub async fn delete_edge(
        &self,
        source_kref: &str,
        target_kref: &str,
        edge_type: &str,
    ) -> Result<()> {
        let resp = self
            .send_no_retry(|| {
                self.client
                    .delete(self.url("/edges"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("source_kref", source_kref),
                        ("target_kref", target_kref),
                        ("edge_type", edge_type),
                    ])
            })
            .await?;

        let _ = self.check_response(resp).await?;
        Ok(())
    }

    // ── Artifact methods ──────────────────────────────────────────

    /// Create an artifact associated with a revision.
    pub async fn create_artifact(
        &self,
        revision_kref: &str,
        name: &str,
        location: &str,
        metadata: HashMap<String, String>,
    ) -> Result<ArtifactResponse> {
        let body = CreateArtifactBody {
            revision_kref: revision_kref.to_string(),
            name: name.to_string(),
            location: location.to_string(),
            metadata,
        };

        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/artifacts"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .json(&body)
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ArtifactResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// List artifacts for a revision.
    pub async fn get_artifacts(&self, revision_kref: &str) -> Result<Vec<ArtifactResponse>> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/artifacts"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("revision_kref", revision_kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<Vec<ArtifactResponse>>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get a specific artifact by revision kref and name.
    pub async fn get_artifact_by_name(
        &self,
        revision_kref: &str,
        name: &str,
    ) -> Result<ArtifactResponse> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/artifacts/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("revision_kref", revision_kref), ("name", name)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ArtifactResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Get a specific artifact by artifact kref.
    pub async fn get_artifact(&self, artifact_kref: &str) -> Result<ArtifactResponse> {
        let resp = self
            .send_with_retry(|| {
                self.client
                    .get(self.url("/artifacts/by-kref"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[("kref", artifact_kref)])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ArtifactResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    /// Deprecate or restore an artifact.
    pub async fn deprecate_artifact(
        &self,
        artifact_kref: &str,
        deprecated: bool,
    ) -> Result<ArtifactResponse> {
        let resp = self
            .send_no_retry(|| {
                self.client
                    .post(self.url("/artifacts/deprecate"))
                    .header("X-Kumiho-Token", &self.service_token)
                    .query(&[
                        ("kref", artifact_kref),
                        ("deprecated", if deprecated { "true" } else { "false" }),
                    ])
            })
            .await?;

        let resp = self.check_response(resp).await?;
        resp.json::<ArtifactResponse>()
            .await
            .map_err(|e| KumihoError::Decode(e.to_string()))
    }

    // ── Team convenience methods ───────────────────────────────────

    /// List teams in the given `<project>/Teams` space.
    pub async fn list_teams_in(
        &self,
        space_path: &str,
        include_deprecated: bool,
    ) -> Result<Vec<ItemResponse>> {
        self.list_items(space_path, include_deprecated).await
    }

    /// Deprecate or restore a team.
    pub async fn deprecate_team(&self, kref: &str, deprecated: bool) -> Result<()> {
        self.deprecate_item(kref, deprecated).await?;
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    //! Tests for retry behaviour and HTML-body trimming. The goal is to lock
    //! in three guarantees the dashboard depends on:
    //!
    //!   1. Transient gateway 5xx (Cloudflare 502/503/504/52x) is retried up
    //!      to 3 times with backoff, then surfaces as `UpstreamUnavailable`
    //!      (NOT `Api`), so upstream HTML never reaches the gateway response.
    //!   2. Non-retryable status codes (4xx / 500 / 501) fail immediately.
    //!   3. HTML response bodies on any non-2xx are replaced with a short
    //!      placeholder before becoming part of `KumihoError::Api`.
    use super::*;
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};
    use wiremock::matchers::{method, path, query_param};
    use wiremock::{Mock, MockServer, Respond, ResponseTemplate};

    /// Counts each request hit so tests can assert retry-attempt totals.
    struct CountingResponder {
        responses: Vec<ResponseTemplate>,
        counter: Arc<AtomicUsize>,
    }

    impl Respond for CountingResponder {
        fn respond(&self, _request: &wiremock::Request) -> ResponseTemplate {
            let idx = self.counter.fetch_add(1, Ordering::SeqCst);
            let last = self.responses.len() - 1;
            self.responses[idx.min(last)].clone()
        }
    }

    fn make_client(base_url: &str) -> KumihoClient {
        KumihoClient::new(base_url.to_string(), "test-token".to_string())
    }

    #[tokio::test]
    async fn deprecate_item_strips_revision_selectors_from_kref() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/api/v1/items/deprecate"))
            .and(query_param("kref", "kref://Project/Skills/example.skill"))
            .and(query_param("deprecated", "true"))
            .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
                "kref": "kref://Project/Skills/example.skill",
                "name": "example",
                "item_name": "example",
                "kind": "skill",
                "deprecated": true,
                "created_at": null,
                "metadata": {}
            })))
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let item = client
            .deprecate_item("kref://Project/Skills/example.skill?r=2&a=SKILL.md", true)
            .await
            .expect("deprecate item should use the base item kref");

        assert!(item.deprecated);
        assert_eq!(item.kref, "kref://Project/Skills/example.skill");
    }

    #[tokio::test]
    async fn deprecate_item_falls_back_to_soft_delete_when_upstream_set_deprecated_404s() {
        let server = MockServer::start().await;
        let item = serde_json::json!({
            "kref": "kref://Project/Skills/example.skill",
            "name": "example",
            "item_name": "example",
            "kind": "skill",
            "deprecated": true,
            "created_at": null,
            "metadata": {}
        });

        Mock::given(method("POST"))
            .and(path("/api/v1/items/deprecate"))
            .and(query_param("kref", "kref://Project/Skills/example.skill"))
            .and(query_param("deprecated", "true"))
            .respond_with(ResponseTemplate::new(404).set_body_string("not found"))
            .expect(1)
            .mount(&server)
            .await;
        Mock::given(method("DELETE"))
            .and(path("/api/v1/items/by-kref"))
            .and(query_param("kref", "kref://Project/Skills/example.skill"))
            .and(query_param("force", "false"))
            .respond_with(ResponseTemplate::new(204))
            .expect(1)
            .mount(&server)
            .await;
        Mock::given(method("GET"))
            .and(path("/api/v1/items/by-kref"))
            .and(query_param("kref", "kref://Project/Skills/example.skill"))
            .respond_with(ResponseTemplate::new(200).set_body_json(item))
            .expect(1)
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let item = client
            .deprecate_item("kref://Project/Skills/example.skill", true)
            .await
            .expect("deprecate item should fall back to soft delete");

        assert!(item.deprecated);
    }

    #[tokio::test]
    async fn retries_on_502_then_succeeds_on_third_attempt() {
        let server = MockServer::start().await;
        let counter = Arc::new(AtomicUsize::new(0));
        Mock::given(method("GET"))
            .and(path("/api/v1/spaces"))
            .respond_with(CountingResponder {
                responses: vec![
                    ResponseTemplate::new(502).set_body_string("<html>boom</html>"),
                    ResponseTemplate::new(502).set_body_string("<html>boom</html>"),
                    ResponseTemplate::new(200).set_body_json(serde_json::json!([])),
                ],
                counter: counter.clone(),
            })
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let result = client.list_spaces("/foo", false).await;
        assert!(result.is_ok(), "expected Ok after retries, got {result:?}");
        assert_eq!(
            counter.load(Ordering::SeqCst),
            3,
            "should have hit upstream 3x"
        );
    }

    #[tokio::test]
    async fn three_502s_returns_upstream_unavailable_not_api() {
        let server = MockServer::start().await;
        let counter = Arc::new(AtomicUsize::new(0));
        Mock::given(method("GET"))
            .and(path("/api/v1/spaces"))
            .respond_with(CountingResponder {
                responses: vec![
                    ResponseTemplate::new(502)
                        .insert_header("content-type", "text/html")
                        .set_body_string("<!DOCTYPE html><html>cloudflare</html>"),
                ],
                counter: counter.clone(),
            })
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let err = client
            .list_spaces("/foo", false)
            .await
            .expect_err("must fail after 3 attempts");

        match err {
            KumihoError::UpstreamUnavailable { status, attempts } => {
                assert_eq!(status, 502);
                assert_eq!(attempts, 3);
            }
            other => panic!("expected UpstreamUnavailable, got {other:?}"),
        }
        assert_eq!(counter.load(Ordering::SeqCst), 3);
    }

    #[tokio::test]
    async fn non_retryable_4xx_returns_api_immediately() {
        let server = MockServer::start().await;
        let counter = Arc::new(AtomicUsize::new(0));
        Mock::given(method("GET"))
            .and(path("/api/v1/spaces"))
            .respond_with(CountingResponder {
                responses: vec![ResponseTemplate::new(400).set_body_string("bad request")],
                counter: counter.clone(),
            })
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let err = client
            .list_spaces("/foo", false)
            .await
            .expect_err("400 must surface");
        match err {
            KumihoError::Api { status, body } => {
                assert_eq!(status, 400);
                assert_eq!(body, "bad request");
            }
            other => panic!("expected Api, got {other:?}"),
        }
        assert_eq!(counter.load(Ordering::SeqCst), 1, "no retry on 4xx");
    }

    #[tokio::test]
    async fn html_body_on_non_retryable_status_is_trimmed() {
        // 404 is not retryable. Even so, an HTML body must not enter the
        // error variant — the dashboard would render it verbatim.
        let server = MockServer::start().await;
        let big_html = format!(
            "<!doctype html><html><body>{}</body></html>",
            "padding ".repeat(200) // ~1.6 KB body
        );
        Mock::given(method("GET"))
            .and(path("/api/v1/spaces"))
            .respond_with(
                ResponseTemplate::new(404)
                    .insert_header("content-type", "text/html; charset=utf-8")
                    .set_body_string(big_html.clone()),
            )
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let err = client
            .list_spaces("/foo", false)
            .await
            .expect_err("404 must surface");
        match err {
            KumihoError::Api { status, body } => {
                assert_eq!(status, 404);
                assert!(
                    !body.contains("<html") && !body.contains("<!doctype"),
                    "HTML body leaked into error: {body}"
                );
                assert!(
                    body.len() < 200,
                    "trimmed body should be a short placeholder, got {} bytes",
                    body.len()
                );
            }
            other => panic!("expected Api, got {other:?}"),
        }
    }

    #[tokio::test]
    async fn connection_refused_eventually_returns_unreachable() {
        // Point at a port we know is closed. reqwest's connect failure is a
        // network error, which the retry helper treats as "retry, then
        // surface as Unreachable".
        let client = make_client("http://127.0.0.1:1"); // port 1 is reserved/closed
        let err = client
            .list_spaces("/foo", false)
            .await
            .expect_err("connection must fail");
        assert!(
            matches!(err, KumihoError::Unreachable(_)),
            "expected Unreachable, got {err:?}"
        );
    }

    // ── Pure-function tests (no network) ─────────────────────────────

    #[test]
    fn is_retryable_status_covers_gateway_codes() {
        for s in [502, 503, 504, 520, 522, 524] {
            assert!(is_retryable_status(s), "{s} should retry");
        }
        for s in [200, 400, 401, 404, 409, 500, 501, 505] {
            assert!(!is_retryable_status(s), "{s} should NOT retry");
        }
    }

    #[test]
    fn looks_like_html_body_detects_common_shapes() {
        assert!(looks_like_html_body("<!DOCTYPE html><html>", None));
        assert!(looks_like_html_body("<!doctype html>", None));
        assert!(looks_like_html_body("<html><body>x</body></html>", None));
        assert!(looks_like_html_body("   <HTML>", None));
        assert!(looks_like_html_body(
            "{\"ok\":true}",
            Some("text/html; charset=utf-8")
        ));
        assert!(!looks_like_html_body(
            "{\"error\":\"x\"}",
            Some("application/json")
        ));
        assert!(!looks_like_html_body("plain text", None));
    }

    #[test]
    fn item_kref_without_selectors_drops_revision_and_artifact_query() {
        assert_eq!(
            item_kref_without_selectors("kref://Project/Skills/example.skill?r=2&a=SKILL.md"),
            "kref://Project/Skills/example.skill"
        );
        assert_eq!(
            item_kref_without_selectors("kref://Project/Skills/example.skill"),
            "kref://Project/Skills/example.skill"
        );
    }

    // ── Bounded-retry-time tests (Finding #2) ────────────────────────

    /// A hung upstream must not let a single retried request blow past the
    /// `TOTAL_BUDGET` (15s) end-to-end cap. Worst case is 3 attempts × 5s
    /// per-attempt timeout + ~2s of jittered backoffs ≈ 17s without the
    /// deadline check; with the deadline check, retries stop early.
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn hung_upstream_respects_total_budget() {
        let server = MockServer::start().await;
        // 10s delay per response, far longer than PER_ATTEMPT_TIMEOUT (5s).
        Mock::given(method("GET"))
            .and(path("/api/v1/spaces"))
            .respond_with(
                ResponseTemplate::new(502)
                    .set_body_string("hang")
                    .set_delay(Duration::from_secs(10)),
            )
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let started = Instant::now();
        let err = client
            .list_spaces("/foo", false)
            .await
            .expect_err("hung upstream must fail");
        let elapsed = started.elapsed();

        // 15s budget + small slack for jitter and scheduling.
        assert!(
            elapsed <= Duration::from_millis(15_500),
            "retries blew past budget: elapsed={elapsed:?}"
        );
        // We expect Unreachable (per-attempt timeout) here; either Unreachable
        // or UpstreamUnavailable is acceptable, but Api with the HTML body
        // would mean we leaked the upstream payload.
        assert!(
            matches!(
                err,
                KumihoError::Unreachable(_) | KumihoError::UpstreamUnavailable { .. }
            ),
            "expected Unreachable / UpstreamUnavailable, got {err:?}"
        );
    }

    // ── POST-skip-retry tests (Finding #3) ───────────────────────────

    /// POSTs must NOT be retried on 502 — retrying a create that already
    /// succeeded on the upstream (but was rewritten by a CDN to 502) would
    /// produce a duplicate item. The error must still be the clean
    /// `UpstreamUnavailable` shape (not `Api { body: "<html>" }`).
    #[tokio::test]
    async fn post_502_does_not_retry_returns_upstream_unavailable() {
        let server = MockServer::start().await;
        let counter = Arc::new(AtomicUsize::new(0));
        Mock::given(method("POST"))
            .and(path("/api/v1/items"))
            .respond_with(CountingResponder {
                responses: vec![
                    ResponseTemplate::new(502)
                        .insert_header("content-type", "text/html")
                        .set_body_string("<!DOCTYPE html><html>cloudflare</html>"),
                ],
                counter: counter.clone(),
            })
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let err = client
            .create_item("/foo", "item", "kind", HashMap::new())
            .await
            .expect_err("POST 502 must surface");
        match err {
            KumihoError::UpstreamUnavailable { status, attempts } => {
                assert_eq!(status, 502);
                assert_eq!(
                    attempts, 1,
                    "POST must not retry (idempotency-key not honoured by Kumiho)"
                );
            }
            other => panic!("expected UpstreamUnavailable, got {other:?}"),
        }
        assert_eq!(
            counter.load(Ordering::SeqCst),
            1,
            "POST must hit upstream exactly once"
        );
    }

    /// Counterpart: GETs SHOULD still retry. Locks in the asymmetry.
    #[tokio::test]
    async fn get_502_retries_three_times() {
        let server = MockServer::start().await;
        let counter = Arc::new(AtomicUsize::new(0));
        Mock::given(method("GET"))
            .and(path("/api/v1/items"))
            .respond_with(CountingResponder {
                responses: vec![ResponseTemplate::new(502).set_body_string("<html>x</html>")],
                counter: counter.clone(),
            })
            .mount(&server)
            .await;

        let client = make_client(&server.uri());
        let _ = client
            .list_items("/foo", false)
            .await
            .expect_err("3 retries");
        assert_eq!(counter.load(Ordering::SeqCst), 3, "GET must retry 3x");
    }
}