nexus-memory-web 1.3.0

Web dashboard for Nexus Memory System with Axum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
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
//! Observability API endpoints for jobs, digests, and runtime health.

use axum::{
    extract::{Query, State},
    Json,
};
use serde::Deserialize;
use std::sync::Arc;
use tokio::sync::RwLock;
use tracing::warn;

use crate::error::{Result, WebError};
use crate::models::{
    AdaptiveDreamState, CognitionOverviewResponse, DashboardResponse, DigestEntry,
    DigestFreshnessState, DigestListResponse, DreamState, JobEntry, JobListResponse,
    JobSummaryResponse, QueryIntrospectionResponse, RecallComposition, ReflectionSampleEntry,
    ReflectionStateResponse, RuntimeResponse,
};
use crate::state::AppState;
use nexus_core::CognitiveLevel;

// ---- Query parameter structs ----

#[derive(Debug, Deserialize, Default)]
pub struct JobQueryParams {
    pub namespace: String,
    pub status: Option<String>,
    pub job_type: Option<String>,
    #[serde(default = "default_limit")]
    pub limit: i64,
    #[serde(default)]
    pub offset: i64,
}

#[derive(Debug, Deserialize, Default)]
pub struct JobSummaryQueryParams {
    pub namespace: String,
    pub job_type: Option<String>,
}

#[derive(Debug, Deserialize, Default)]
pub struct DigestQueryParams {
    pub namespace: String,
    pub session_key: Option<String>,
    #[serde(default = "default_limit")]
    pub limit: i64,
    #[serde(default)]
    pub offset: i64,
}

fn default_limit() -> i64 {
    50
}

// ---- Handlers ----

/// GET /api/cognition/jobs — list memory jobs for a namespace.
pub async fn list_jobs(
    State(state): State<Arc<RwLock<AppState>>>,
    Query(params): Query<JobQueryParams>,
) -> Result<Json<JobListResponse>> {
    if params.namespace.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "namespace query parameter is required".to_string(),
        ));
    }

    let state = state.read().await;

    let namespace = state
        .namespace_repo
        .get_by_name(&params.namespace)
        .await?
        .ok_or_else(|| WebError::NotFound(format!("Namespace '{}' not found", params.namespace)))?;

    let limit = params.limit.clamp(1, 200);
    let offset = params.offset.max(0);

    let rows = state
        .memory_repo
        .list_jobs(
            namespace.id,
            params.job_type.as_deref(),
            params.status.as_deref(),
            limit,
            offset,
        )
        .await?;

    let total = state
        .memory_repo
        .count_jobs(
            namespace.id,
            params.job_type.as_deref(),
            params.status.as_deref(),
        )
        .await?;

    let jobs: Vec<JobEntry> = rows.into_iter().map(JobEntry::from).collect();

    Ok(Json(JobListResponse {
        success: true,
        namespace: params.namespace,
        jobs,
        total,
    }))
}

/// GET /api/cognition/jobs/summary — job counts grouped by status.
pub async fn job_summary(
    State(state): State<Arc<RwLock<AppState>>>,
    Query(params): Query<JobSummaryQueryParams>,
) -> Result<Json<JobSummaryResponse>> {
    if params.namespace.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "namespace query parameter is required".to_string(),
        ));
    }

    let state = state.read().await;

    let namespace = state
        .namespace_repo
        .get_by_name(&params.namespace)
        .await?
        .ok_or_else(|| WebError::NotFound(format!("Namespace '{}' not found", params.namespace)))?;

    let rows = state
        .memory_repo
        .count_jobs_by_status(namespace.id, params.job_type.as_deref())
        .await?;

    let counts = rows.into_iter().collect();

    Ok(Json(JobSummaryResponse {
        success: true,
        namespace: params.namespace,
        counts,
    }))
}

/// GET /api/cognition/digests — list session digests for a namespace.
pub async fn list_digests(
    State(state): State<Arc<RwLock<AppState>>>,
    Query(params): Query<DigestQueryParams>,
) -> Result<Json<DigestListResponse>> {
    if params.namespace.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "namespace query parameter is required".to_string(),
        ));
    }

    let state = state.read().await;

    let namespace = state
        .namespace_repo
        .get_by_name(&params.namespace)
        .await?
        .ok_or_else(|| WebError::NotFound(format!("Namespace '{}' not found", params.namespace)))?;

    let limit = params.limit.clamp(1, 200);
    let offset = params.offset.max(0);

    let rows = state
        .memory_repo
        .list_digests(namespace.id, params.session_key.as_deref(), limit, offset)
        .await?;

    let total = state
        .memory_repo
        .count_digests(namespace.id, params.session_key.as_deref())
        .await?;

    let digests: Vec<DigestEntry> = rows.into_iter().map(DigestEntry::from).collect();

    Ok(Json(DigestListResponse {
        success: true,
        namespace: params.namespace,
        digests,
        total,
    }))
}

/// GET /api/cognition/runtime — runtime health info from AppState.
pub async fn runtime_health(
    State(state): State<Arc<RwLock<AppState>>>,
) -> Result<Json<RuntimeResponse>> {
    let state = state.read().await;

    // Probe the DB connection.
    let db_connected = sqlx::query_scalar::<_, i64>("SELECT 1")
        .fetch_one(state.pool())
        .await
        .is_ok();

    let agent_enabled = state.agent_supervisor.is_some();
    let active_sessions = state.orchestrator.active_session_count().await;

    Ok(Json(RuntimeResponse {
        success: true,
        version: env!("CARGO_PKG_VERSION").to_string(),
        uptime_seconds: state.uptime_seconds(),
        db_connected,
        agent_enabled,
        active_sessions,
    }))
}

#[derive(Debug, Deserialize, Default)]
pub struct OverviewQueryParams {
    pub namespace: String,
}

#[derive(Debug, Deserialize, Default)]
pub struct ReflectionQueryParams {
    pub namespace: String,
    #[serde(default = "default_limit")]
    pub limit: i64,
}

/// GET /api/cognition/overview — aggregated cognition state for a namespace.
pub async fn cognition_overview(
    State(state): State<Arc<RwLock<AppState>>>,
    Query(params): Query<OverviewQueryParams>,
) -> Result<Json<CognitionOverviewResponse>> {
    if params.namespace.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "namespace query parameter is required".to_string(),
        ));
    }

    let state = state.read().await;

    let namespace = state
        .namespace_repo
        .get_by_name(&params.namespace)
        .await?
        .ok_or_else(|| WebError::NotFound(format!("Namespace '{}' not found", params.namespace)))?;

    let status_rows = state
        .memory_repo
        .count_jobs_by_status(namespace.id, None)
        .await?;
    let jobs_by_status: std::collections::HashMap<String, i64> = status_rows.into_iter().collect();

    let digest_count = state.memory_repo.count_digests(namespace.id, None).await?;

    let evidence_count = state.memory_repo.count_evidence(namespace.id).await?;
    let stage_metrics = state
        .memory_repo
        .latest_metrics_for_namespace(namespace.id, Some("cognition."), 64)
        .await?
        .into_iter()
        .fold(
            std::collections::HashMap::new(),
            |mut acc: std::collections::HashMap<String, f64>, metric| {
                acc.entry(metric.metric_name).or_insert(metric.metric_value);
                acc
            },
        );

    Ok(Json(CognitionOverviewResponse {
        success: true,
        namespace: params.namespace,
        jobs_by_status,
        digest_count,
        evidence_count,
        stage_metrics,
    }))
}

/// GET /api/cognition/reflection — derived and contradiction observability for a namespace.
pub async fn reflection_state(
    State(state): State<Arc<RwLock<AppState>>>,
    Query(params): Query<ReflectionQueryParams>,
) -> Result<Json<ReflectionStateResponse>> {
    if params.namespace.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "namespace query parameter is required".to_string(),
        ));
    }

    let state = state.read().await;

    let namespace = state
        .namespace_repo
        .get_by_name(&params.namespace)
        .await?
        .ok_or_else(|| WebError::NotFound(format!("Namespace '{}' not found", params.namespace)))?;

    let limit = params.limit.clamp(1, 50);
    let contradiction_count = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::Contradiction)
        .await?;
    let derived_count = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::Derived)
        .await?;
    let recent_contradictions = state
        .memory_repo
        .get_by_cognitive_level(namespace.id, CognitiveLevel::Contradiction, limit)
        .await?
        .into_iter()
        .map(ReflectionSampleEntry::from)
        .collect();
    let recent_derived = state
        .memory_repo
        .get_by_cognitive_level(namespace.id, CognitiveLevel::Derived, limit)
        .await?
        .into_iter()
        .map(ReflectionSampleEntry::from)
        .collect();

    Ok(Json(ReflectionStateResponse {
        success: true,
        namespace: params.namespace,
        contradiction_count,
        derived_count,
        recent_contradictions,
        recent_derived,
    }))
}

// ---- Query Introspection ----

#[derive(Debug, Deserialize, Default)]
pub struct QueryIntrospectionQueryParams {
    pub namespace: String,
    pub question: String,
}

/// GET /api/cognition/query-introspection — ranking decision introspection.
///
/// Purely structural analysis (no LLM calls). Returns included/excluded
/// memories with per-memory signals, bucket stats, and relevant reflections.
/// Works without agent supervisor enabled.
pub async fn query_introspection(
    State(state): State<Arc<RwLock<AppState>>>,
    Query(params): Query<QueryIntrospectionQueryParams>,
) -> Result<Json<QueryIntrospectionResponse>> {
    if params.namespace.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "namespace query parameter is required".to_string(),
        ));
    }
    if params.question.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "question query parameter is required".to_string(),
        ));
    }

    let state = state.read().await;

    let namespace = state
        .namespace_repo
        .get_by_name(&params.namespace)
        .await?
        .ok_or_else(|| WebError::NotFound(format!("Namespace '{}' not found", params.namespace)))?;

    let query_context_limit = nexus_core::Config::from_env()
        .map(|config| config.agent.query_context_limit)
        .unwrap_or_else(|_| nexus_core::config::AgentConfig::default().query_context_limit);

    let request = nexus_core::WorkingRepresentationRequest {
        namespace_id: namespace.id,
        perspective: None,
        query: Some(params.question.clone()),
        max_items: query_context_limit,
        include_raw: false,
        ..nexus_core::WorkingRepresentationRequest::default()
    };

    let introspection =
        nexus_agent::introspect_query(&request, &params.question, &state.memory_repo)
            .await
            .map_err(|e| WebError::Storage(format!("Introspection failed: {}", e)))?;

    Ok(Json(QueryIntrospectionResponse {
        success: true,
        namespace: params.namespace,
        question: params.question,
        introspection,
    }))
}

// ---- Operator Dashboard ----

#[derive(Debug, Deserialize, Default)]
pub struct DashboardQueryParams {
    pub namespace: String,
}

/// GET /api/cognition/dashboard — at-a-glance operator view of dream, digest, recall, and adaptive state.
pub async fn dashboard(
    State(state): State<Arc<RwLock<AppState>>>,
    Query(params): Query<DashboardQueryParams>,
) -> Result<Json<DashboardResponse>> {
    if params.namespace.trim().is_empty() {
        return Err(WebError::InvalidRequest(
            "namespace query parameter is required".to_string(),
        ));
    }

    let state = state.read().await;

    let namespace = state
        .namespace_repo
        .get_by_name(&params.namespace)
        .await?
        .ok_or_else(|| WebError::NotFound(format!("Namespace '{}' not found", params.namespace)))?;

    // --- Dream throughput ---
    let completed_reflections = state
        .memory_repo
        .count_jobs(namespace.id, Some("reflect_namespace"), Some("completed"))
        .await?
        + state
            .memory_repo
            .count_jobs(namespace.id, Some("reflect_perspective"), Some("completed"))
            .await?;
    let completed_digests = state
        .memory_repo
        .count_jobs(namespace.id, Some("digest_session"), Some("completed"))
        .await?;
    let failed_jobs = state
        .memory_repo
        .count_jobs(namespace.id, None, Some("failed"))
        .await?;
    let pending_jobs = state
        .memory_repo
        .count_jobs(namespace.id, None, Some("enqueued"))
        .await?;

    // Most recent completed dream job (reflection or digest).
    let last_dream_at = {
        let reflect_jobs = state
            .memory_repo
            .list_jobs(
                namespace.id,
                Some("reflect_namespace"),
                Some("completed"),
                1,
                0,
            )
            .await
            .unwrap_or_else(|e| {
                warn!(error = %e, "Failed to list reflection jobs for dashboard");
                Vec::new()
            });
        let digest_jobs = state
            .memory_repo
            .list_jobs(
                namespace.id,
                Some("digest_session"),
                Some("completed"),
                1,
                0,
            )
            .await
            .unwrap_or_else(|e| {
                warn!(error = %e, "Failed to list digest jobs for dashboard");
                Vec::new()
            });
        let most_recent = reflect_jobs
            .iter()
            .chain(digest_jobs.iter())
            .max_by_key(|j| j.updated_at.as_str());
        most_recent.map(|j| j.updated_at.clone())
    };

    // --- Digest freshness ---
    let total_digests = state.memory_repo.count_digests(namespace.id, None).await?;
    let sessions_with_cognition = state
        .memory_repo
        .count_distinct_session_keys_with_cognition(namespace.id)
        .await?;

    let (latest_digest_at, latest_digest_age_seconds) = {
        let recent = state
            .memory_repo
            .list_digests(namespace.id, None, 1, 0)
            .await
            .unwrap_or_else(|e| {
                warn!(error = %e, "Failed to list digests for dashboard");
                Vec::new()
            });
        match recent.into_iter().next() {
            Some(d) => match parse_timestamp(&d.created_at) {
                Some(dt) => {
                    let age = chrono::Utc::now()
                        .signed_duration_since(dt)
                        .num_seconds()
                        .max(0);
                    (Some(d.created_at), Some(age))
                }
                None => {
                    warn!(
                        created_at = %d.created_at,
                        "Malformed digest timestamp; returning None for age"
                    );
                    (None, None)
                }
            },
            None => (None, None),
        }
    };

    // --- Recall composition ---
    let raw = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::Raw)
        .await?;
    let explicit = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::Explicit)
        .await?;
    let derived = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::Derived)
        .await?;
    let summary_short = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::SummaryShort)
        .await?;
    let summary_long = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::SummaryLong)
        .await?;
    let contradiction = state
        .memory_repo
        .count_by_cognitive_level(namespace.id, CognitiveLevel::Contradiction)
        .await?;
    let total = raw + explicit + derived + summary_short + summary_long + contradiction;

    // --- Adaptive dream state ---
    let cognition_config = match nexus_core::Config::from_env() {
        Ok(c) => c.cognition,
        Err(e) => {
            warn!(error = %e, "Failed to load cognition config for dashboard; using defaults");
            nexus_core::config::CognitionConfig::default()
        }
    };
    let contradiction_density = if total > 0 {
        contradiction as f64 / total as f64
    } else {
        0.0
    };

    let base_interval = cognition_config.adaptive_dream_max_interval_secs;
    let factor = 1.0 - ((contradiction as f32 * 0.10).min(0.9));
    let adapted = (base_interval as f32 * factor) as u64;
    let current_interval_secs = adapted.clamp(
        cognition_config.adaptive_dream_min_interval_secs,
        cognition_config.adaptive_dream_max_interval_secs,
    );

    Ok(Json(DashboardResponse {
        success: true,
        namespace: params.namespace,
        dream: DreamState {
            completed_reflections,
            completed_digests,
            failed_jobs,
            pending_jobs,
            last_dream_at,
        },
        digest: DigestFreshnessState {
            total_digests,
            sessions_with_cognition,
            latest_digest_age_seconds,
            latest_digest_at,
        },
        recall: RecallComposition {
            raw,
            explicit,
            derived,
            summary_short,
            summary_long,
            contradiction,
            total,
        },
        adaptive: AdaptiveDreamState {
            enabled: cognition_config.adaptive_dream_enabled,
            current_interval_secs,
            min_interval_secs: cognition_config.adaptive_dream_min_interval_secs,
            max_interval_secs: cognition_config.adaptive_dream_max_interval_secs,
            contradiction_count: contradiction,
            contradiction_density,
        },
    }))
}

/// Parse a timestamp string that may be in RFC3339 or SQLite `datetime('now')` format.
///
/// SQLite `datetime('now')` produces `YYYY-MM-DD HH:MM:SS` (no timezone suffix),
/// which is assumed to be UTC.  RFC3339 timestamps (if any exist) are tried first.
fn parse_timestamp(s: &str) -> Option<chrono::DateTime<chrono::Utc>> {
    // Try RFC3339 first (explicitly timezone-annotated timestamps).
    if let Ok(dt) = chrono::DateTime::parse_from_rfc3339(s) {
        return Some(dt.with_timezone(&chrono::Utc));
    }
    // Fall back to SQLite datetime('now') format: "YYYY-MM-DD HH:MM:SS"
    if let Ok(naive) = chrono::NaiveDateTime::parse_from_str(s, "%Y-%m-%d %H:%M:%S") {
        return Some(naive.and_utc());
    }
    // Try with fractional seconds: "YYYY-MM-DD HH:MM:SS.fff"
    if let Ok(naive) = chrono::NaiveDateTime::parse_from_str(s, "%Y-%m-%d %H:%M:%S%.f") {
        return Some(naive.and_utc());
    }
    None
}

#[cfg(test)]
mod tests {
    use super::*;
    use axum::body::Body;
    use axum::http::{Request, StatusCode};
    use axum::routing::get;
    use axum::Router;
    use nexus_orchestrator::Orchestrator;
    use serde_json::Value;
    use std::sync::Arc;
    use tower::ServiceExt;

    struct TestApp {
        app: Router,
        state: Arc<RwLock<crate::state::AppState>>,
    }

    async fn test_app() -> TestApp {
        let pool = sqlx::SqlitePool::connect("sqlite::memory:")
            .await
            .expect("connect to in-memory db");
        nexus_storage::migrations::run_migrations(&pool)
            .await
            .expect("run migrations");

        let mut storage = nexus_storage::StorageManager::new(pool.clone());
        storage.initialize().await.expect("initialize storage");

        let orchestrator = Orchestrator::default();
        let state = Arc::new(RwLock::new(
            crate::state::AppState::new(storage, orchestrator)
                .await
                .expect("create app state"),
        ));

        let app = Router::new()
            .route("/api/cognition/jobs", get(list_jobs))
            .route("/api/cognition/jobs/summary", get(job_summary))
            .route("/api/cognition/digests", get(list_digests))
            .route("/api/cognition/overview", get(cognition_overview))
            .route("/api/cognition/reflection", get(reflection_state))
            .route("/api/cognition/runtime", get(runtime_health))
            .route(
                "/api/cognition/query-introspection",
                get(query_introspection),
            )
            .route("/api/cognition/dashboard", get(dashboard))
            .with_state(state.clone());

        TestApp { app, state }
    }

    /// Helper: create a namespace via the shared state.
    async fn create_namespace_in_test(state: &Arc<RwLock<crate::state::AppState>>, name: &str) {
        let s = state.read().await;
        s.namespace_repo
            .get_or_create(name, "test-agent")
            .await
            .expect("create namespace");
    }

    /// Helper: parse response body into JSON Value.
    fn body_to_json(body: axum::body::Bytes) -> Value {
        serde_json::from_slice(&body).expect("valid JSON")
    }

    #[tokio::test]
    async fn test_runtime_returns_honest_fields() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/runtime")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert!(!json["version"].as_str().unwrap().is_empty());
        assert!(json["uptime_seconds"].as_u64().is_some());
        assert!(json["db_connected"].is_boolean());
        assert!(json["agent_enabled"].is_boolean());
    }

    #[tokio::test]
    async fn test_query_introspection_missing_question_returns_400() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "intro-missing").await;

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/query-introspection?namespace=intro-missing")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn test_query_introspection_returns_structured_payload() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "intro-ns").await;

        {
            let state = test.state.read().await;
            let namespace = state
                .namespace_repo
                .get_by_name("intro-ns")
                .await
                .unwrap()
                .unwrap();

            state
                .memory_repo
                .store(nexus_storage::StoreMemoryParams {
                    namespace_id: namespace.id,
                    content: "Authentication now uses session cookies with http-only flags.",
                    category: &nexus_core::MemoryCategory::Facts,
                    memory_lane_type: None,
                    labels: &[],
                    metadata: &serde_json::json!({
                        "cognitive": {
                            "level": "explicit",
                            "observer": "claude-code",
                            "subject": "claude-code",
                            "generated_by": "test_fixture",
                            "confidence": 0.92
                        }
                    }),
                    embedding: None,
                    embedding_model: None,
                })
                .await
                .unwrap();
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/query-introspection?namespace=intro-ns&question=session%20cookies")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["namespace"], "intro-ns");
        assert_eq!(json["question"], "session cookies");
        assert!(json["introspection"]["included"].is_array());
        assert!(!json["introspection"]["included"]
            .as_array()
            .unwrap()
            .is_empty());
        assert!(json["introspection"]["bucket_stats"].is_array());
    }

    #[tokio::test]
    async fn test_jobs_missing_namespace_returns_400() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/jobs")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn test_jobs_unknown_namespace_returns_404() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/jobs?namespace=nonexistent")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();
        assert_eq!(resp.status(), StatusCode::NOT_FOUND);
    }

    #[tokio::test]
    async fn test_reflection_missing_namespace_returns_400() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/reflection")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn test_reflection_returns_counts_and_samples() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "reflect-ns").await;

        {
            let state = test.state.read().await;
            let namespace = state
                .namespace_repo
                .get_by_name("reflect-ns")
                .await
                .unwrap()
                .unwrap();

            for (content, level) in [
                ("derived insight", CognitiveLevel::Derived),
                ("contradiction note", CognitiveLevel::Contradiction),
            ] {
                state
                    .memory_repo
                    .store(nexus_storage::repository::StoreMemoryParams {
                        namespace_id: namespace.id,
                        content,
                        category: &nexus_core::MemoryCategory::Facts,
                        memory_lane_type: None,
                        labels: &[],
                        metadata: &serde_json::json!({
                            "cognitive": {
                                "level": level.as_str(),
                                "observer": "claude-code",
                                "subject": "claude-code",
                                "confidence": 0.9,
                                "generated_by": "test"
                            }
                        }),
                        embedding: None,
                        embedding_model: None,
                    })
                    .await
                    .unwrap();
            }
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/reflection?namespace=reflect-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["derived_count"], 1);
        assert_eq!(json["contradiction_count"], 1);
        assert_eq!(json["recent_derived"][0]["content"], "derived insight");
        assert_eq!(
            json["recent_contradictions"][0]["content"],
            "contradiction note"
        );
    }

    #[tokio::test]
    async fn test_overview_returns_latest_stage_metrics() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "overview-ns").await;

        {
            let state = test.state.read().await;
            let namespace = state
                .namespace_repo
                .get_by_name("overview-ns")
                .await
                .unwrap()
                .unwrap();

            state
                .memory_repo
                .record_metric(
                    "cognition.query.total_ms",
                    11.0,
                    &serde_json::json!({"namespace_id": namespace.id, "stage": "total", "unit": "ms"}),
                )
                .await
                .unwrap();
            state
                .memory_repo
                .record_metric(
                    "cognition.query.total_ms",
                    15.5,
                    &serde_json::json!({"namespace_id": namespace.id, "stage": "total", "unit": "ms"}),
                )
                .await
                .unwrap();
            state
                .memory_repo
                .record_metric(
                    "cognition.dream.total_ms",
                    44.0,
                    &serde_json::json!({"namespace_id": namespace.id, "stage": "total", "unit": "ms"}),
                )
                .await
                .unwrap();
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/overview?namespace=overview-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["stage_metrics"]["cognition.query.total_ms"], 15.5);
        assert_eq!(json["stage_metrics"]["cognition.dream.total_ms"], 44.0);
    }

    #[tokio::test]
    async fn test_digests_missing_namespace_returns_400() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/digests")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn test_overview_unknown_namespace_returns_404() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/overview?namespace=nope")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();
        assert_eq!(resp.status(), StatusCode::NOT_FOUND);
    }

    #[tokio::test]
    async fn test_jobs_with_existing_namespace_returns_empty_list() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "jobs-test-ns").await;

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/jobs?namespace=jobs-test-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["namespace"], "jobs-test-ns");
        assert_eq!(json["jobs"], Value::Array(vec![]));
        assert_eq!(json["total"], 0);
    }

    #[tokio::test]
    async fn test_jobs_reports_total_matching_rows_not_page_len() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "jobs-page-ns").await;

        {
            let state = test.state.read().await;
            let namespace = state
                .namespace_repo
                .get_by_name("jobs-page-ns")
                .await
                .unwrap()
                .unwrap();

            for idx in 0..3 {
                state
                    .memory_repo
                    .enqueue_job(nexus_storage::EnqueueJobParams {
                        namespace_id: namespace.id,
                        job_type: "derive",
                        priority: 10 - idx,
                        perspective: None,
                        payload: &serde_json::json!({ "idx": idx }),
                    })
                    .await
                    .unwrap();
            }
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/jobs?namespace=jobs-page-ns&limit=2")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["jobs"].as_array().unwrap().len(), 2);
        assert_eq!(json["total"], 3);
    }

    #[tokio::test]
    async fn test_overview_with_existing_namespace() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "overview-test-ns").await;

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/overview?namespace=overview-test-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["namespace"], "overview-test-ns");
        assert_eq!(json["digest_count"], 0);
        assert_eq!(json["evidence_count"], 0);
    }

    #[tokio::test]
    async fn test_job_summary_with_existing_namespace() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "summary-test-ns").await;

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/jobs/summary?namespace=summary-test-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["namespace"], "summary-test-ns");
        assert!(json["counts"].is_object());
    }

    #[tokio::test]
    async fn test_job_summary_returns_real_counts() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "summary-data-ns").await;

        {
            let state = test.state.read().await;
            let namespace = state
                .namespace_repo
                .get_by_name("summary-data-ns")
                .await
                .unwrap()
                .unwrap();

            state
                .memory_repo
                .enqueue_job(nexus_storage::EnqueueJobParams {
                    namespace_id: namespace.id,
                    job_type: "derive",
                    priority: 10,
                    perspective: None,
                    payload: &serde_json::json!({ "idx": 1 }),
                })
                .await
                .unwrap();
            state
                .memory_repo
                .enqueue_job(nexus_storage::EnqueueJobParams {
                    namespace_id: namespace.id,
                    job_type: "digest",
                    priority: 5,
                    perspective: None,
                    payload: &serde_json::json!({ "idx": 2 }),
                })
                .await
                .unwrap();
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/jobs/summary?namespace=summary-data-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["counts"]["pending"], 2);
    }

    #[tokio::test]
    async fn test_digests_with_existing_namespace() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "digest-test-ns").await;

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/digests?namespace=digest-test-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["namespace"], "digest-test-ns");
        assert_eq!(json["total"], 0);
    }

    #[tokio::test]
    async fn test_digests_support_pagination_and_total() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "digest-page-ns").await;

        {
            let state = test.state.read().await;
            let namespace = state
                .namespace_repo
                .get_by_name("digest-page-ns")
                .await
                .unwrap()
                .unwrap();

            for idx in 0..3 {
                let content = format!("digest memory {idx}");
                let memory = state
                    .memory_repo
                    .store(nexus_storage::StoreMemoryParams {
                        namespace_id: namespace.id,
                        content: &content,
                        category: &nexus_core::MemoryCategory::Session,
                        memory_lane_type: None,
                        labels: &[],
                        metadata: &serde_json::json!({}),
                        embedding: None,
                        embedding_model: None,
                    })
                    .await
                    .unwrap();

                state
                    .memory_repo
                    .store_digest(nexus_storage::StoreDigestParams {
                        namespace_id: namespace.id,
                        session_key: "digest-session",
                        digest_kind: if idx % 2 == 0 {
                            "summary_short"
                        } else {
                            "summary_long"
                        },
                        memory_id: memory.id,
                        start_memory_id: Some(memory.id),
                        end_memory_id: Some(memory.id),
                        token_count: 100 + idx,
                    })
                    .await
                    .unwrap();
            }
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/digests?namespace=digest-page-ns&limit=2")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["digests"].as_array().unwrap().len(), 2);
        assert_eq!(json["total"], 3);
    }

    #[test]
    fn test_job_entry_serialization() {
        let job = JobEntry {
            id: 1,
            job_type: "derive".to_string(),
            status: "pending".to_string(),
            priority: 10,
            attempts: 0,
            last_error: None,
            lease_owner: Some("worker-1".to_string()),
            lease_expires_at: None,
            created_at: "2026-01-01T00:00:00Z".to_string(),
            updated_at: "2026-01-01T00:00:00Z".to_string(),
        };
        let json = serde_json::to_value(&job).unwrap();
        assert_eq!(json["id"], 1);
        assert_eq!(json["job_type"], "derive");
        assert_eq!(json["lease_owner"], "worker-1");
        assert!(json["last_error"].is_null());
    }

    #[test]
    fn test_digest_entry_serialization() {
        let digest = DigestEntry {
            id: 1,
            session_key: "sess-1".to_string(),
            digest_kind: "summary_short".to_string(),
            memory_id: 42,
            start_memory_id: Some(1),
            end_memory_id: Some(10),
            token_count: 200,
            created_at: "2026-01-01T00:00:00Z".to_string(),
        };
        let json = serde_json::to_value(&digest).unwrap();
        assert_eq!(json["session_key"], "sess-1");
        assert_eq!(json["memory_id"], 42);
        assert_eq!(json["token_count"], 200);
    }

    #[tokio::test]
    async fn test_overview_with_enqueued_job_and_evidence() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "data-test-ns").await;

        {
            let s = test.state.read().await;
            let ns = s
                .namespace_repo
                .get_by_name("data-test-ns")
                .await
                .unwrap()
                .expect("namespace exists");

            let mem_id = s
                .memory_repo
                .store(nexus_storage::StoreMemoryParams {
                    namespace_id: ns.id,
                    content: "test memory for evidence",
                    category: &nexus_core::MemoryCategory::Session,
                    memory_lane_type: None,
                    labels: &[],
                    metadata: &serde_json::json!({}),
                    embedding: None,
                    embedding_model: None,
                })
                .await
                .unwrap();

            s.memory_repo
                .enqueue_job(nexus_storage::EnqueueJobParams {
                    namespace_id: ns.id,
                    job_type: "derive",
                    priority: 5,
                    perspective: None,
                    payload: &serde_json::json!({"test": true}),
                })
                .await
                .unwrap();

            s.memory_repo
                .store_with_lineage(nexus_storage::StoreMemoryWithLineageParams {
                    store: nexus_storage::StoreMemoryParams {
                        namespace_id: ns.id,
                        content: "derived from evidence",
                        category: &nexus_core::MemoryCategory::Facts,
                        memory_lane_type: None,
                        labels: &[],
                        metadata: &serde_json::json!({"cognitive": {"level": "derived"}}),
                        embedding: None,
                        embedding_model: None,
                    },
                    source_memory_ids: &[mem_id.id],
                    evidence_role: "source",
                })
                .await
                .unwrap();

            let _ = mem_id;
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/overview?namespace=data-test-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["jobs_by_status"]["pending"], 1);
        assert!(json["evidence_count"].as_i64().unwrap() >= 1);
    }

    // ---- Dashboard tests ----

    #[tokio::test]
    async fn test_dashboard_missing_namespace_returns_400() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/dashboard")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn test_dashboard_unknown_namespace_returns_404() {
        let test = test_app().await;
        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/dashboard?namespace=nonexistent")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();
        assert_eq!(resp.status(), StatusCode::NOT_FOUND);
    }

    #[tokio::test]
    async fn test_dashboard_returns_all_sections() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "dash-empty-ns").await;

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/dashboard?namespace=dash-empty-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["success"], true);
        assert_eq!(json["namespace"], "dash-empty-ns");

        // Dream section
        assert_eq!(json["dream"]["completed_reflections"], 0);
        assert_eq!(json["dream"]["completed_digests"], 0);
        assert_eq!(json["dream"]["failed_jobs"], 0);
        assert_eq!(json["dream"]["pending_jobs"], 0);
        assert!(json["dream"]["last_dream_at"].is_null());

        // Digest section
        assert_eq!(json["digest"]["total_digests"], 0);
        assert_eq!(json["digest"]["sessions_with_cognition"], 0);
        assert!(json["digest"]["latest_digest_at"].is_null());
        assert!(json["digest"]["latest_digest_age_seconds"].is_null());

        // Recall section
        assert_eq!(json["recall"]["raw"], 0);
        assert_eq!(json["recall"]["explicit"], 0);
        assert_eq!(json["recall"]["contradiction"], 0);
        assert_eq!(json["recall"]["total"], 0);

        // Adaptive section
        assert!(json["adaptive"]["enabled"].is_boolean());
        assert!(json["adaptive"]["current_interval_secs"].as_u64().is_some());
        assert!(json["adaptive"]["contradiction_density"].is_number());
    }

    #[tokio::test]
    async fn test_dashboard_populates_recall_and_dream_from_data() {
        let test = test_app().await;
        create_namespace_in_test(&test.state, "dash-data-ns").await;

        {
            let state = test.state.read().await;
            let namespace = state
                .namespace_repo
                .get_by_name("dash-data-ns")
                .await
                .unwrap()
                .unwrap();

            // Store memories at different cognitive levels.
            for (content, level) in [
                ("raw event", CognitiveLevel::Raw),
                ("explicit fact", CognitiveLevel::Explicit),
                ("derived insight", CognitiveLevel::Derived),
                ("contradiction note", CognitiveLevel::Contradiction),
            ] {
                state
                    .memory_repo
                    .store(nexus_storage::repository::StoreMemoryParams {
                        namespace_id: namespace.id,
                        content,
                        category: &nexus_core::MemoryCategory::Facts,
                        memory_lane_type: None,
                        labels: &[],
                        metadata: &serde_json::json!({
                            "cognitive": {
                                "level": level.as_str(),
                                "observer": "claude-code",
                                "subject": "claude-code",
                                "confidence": 0.9,
                                "generated_by": "test"
                            }
                        }),
                        embedding: None,
                        embedding_model: None,
                    })
                    .await
                    .unwrap();
            }
        }

        let resp = test
            .app
            .oneshot(
                Request::builder()
                    .uri("/api/cognition/dashboard?namespace=dash-data-ns")
                    .body(Body::empty())
                    .unwrap(),
            )
            .await
            .unwrap();

        assert_eq!(resp.status(), StatusCode::OK);
        let body = axum::body::to_bytes(resp.into_body(), 1_000_000)
            .await
            .unwrap();
        let json = body_to_json(body);

        assert_eq!(json["recall"]["raw"], 1);
        assert_eq!(json["recall"]["explicit"], 1);
        assert_eq!(json["recall"]["derived"], 1);
        assert_eq!(json["recall"]["contradiction"], 1);
        assert_eq!(json["recall"]["total"], 4);
        // contradiction_density = 1/4 = 0.25
        assert!((json["adaptive"]["contradiction_density"].as_f64().unwrap() - 0.25).abs() < 0.01);
    }

    #[test]
    fn test_dashboard_response_serialization_roundtrip() {
        let dash = DashboardResponse {
            success: true,
            namespace: "test".to_string(),
            dream: DreamState {
                completed_reflections: 5,
                completed_digests: 3,
                failed_jobs: 1,
                pending_jobs: 2,
                last_dream_at: Some("2026-03-27T12:00:00Z".to_string()),
            },
            digest: DigestFreshnessState {
                total_digests: 10,
                sessions_with_cognition: 4,
                latest_digest_age_seconds: Some(3600),
                latest_digest_at: Some("2026-03-27T11:00:00Z".to_string()),
            },
            recall: RecallComposition {
                raw: 50,
                explicit: 30,
                derived: 10,
                summary_short: 5,
                summary_long: 3,
                contradiction: 2,
                total: 100,
            },
            adaptive: AdaptiveDreamState {
                enabled: true,
                current_interval_secs: 120,
                min_interval_secs: 60,
                max_interval_secs: 600,
                contradiction_count: 2,
                contradiction_density: 0.02,
            },
        };
        let json = serde_json::to_value(&dash).unwrap();
        assert_eq!(json["success"], true);
        assert_eq!(json["dream"]["completed_reflections"], 5);
        assert_eq!(json["recall"]["total"], 100);
        assert_eq!(json["adaptive"]["enabled"], true);
        assert_eq!(json["adaptive"]["current_interval_secs"], 120);

        // Round-trip
        let deserialized: DashboardResponse = serde_json::from_value(json).unwrap();
        assert_eq!(deserialized.dream.completed_reflections, 5);
        assert_eq!(deserialized.recall.total, 100);
    }
}