unit 0.29.0

A self-replicating software nanobot — minimal Forth interpreter that is also a networked mesh agent
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
// multi_unit.rs — single-process multi-unit host + mesh bridge
//
// A direct port of the WASM browser demo's BrowserMesh model (web/unit.js):
// many `VM` instances live in one OS process, share an address space, and
// communicate by direct method calls — no fork, no UDP, no peer table.
//
// `MultiUnitHost` (lower half of this file) is the strictly-intra-process
// runtime. `MultiUnitNode` (upper half of the section after the host) is
// the bridge: it owns a `MultiUnitHost` and a `MeshNode`, advertising the
// host's unit count to other processes via the existing bounded-k gossip
// mesh. Addressing stays explicit: in-process siblings are reached via the
// host's `share_word`/`teach_from`; remote processes are reached via the
// mesh. The bridge does not create a unified address space.
//
// Mirrors the WASM model deliberately:
//   - `spawn` (web/unit.js:76) → `MultiUnitHost::spawn`
//   - `_pickWorker` (web/unit.js:167) → `pick_worker`
//   - `executeGoal` (web/unit.js:179) → `execute_goal`
//   - `shareWord`  (web/unit.js:196) → `share_word`
//   - `teachFrom`  (web/unit.js:204) → `teach_from`

use crate::vm::VM;

/// Per-unit state. `vm` is the Forth VM. `busy` and `tasks_completed`
/// match the BrowserUnit fields used by the worker picker. `user_words`
/// tracks definition source strings as they were supplied (mirrors
/// `BrowserUnit.userWords`, web/unit.js:42–43, 234) — Forth's `SEE`
/// returns decompiled internal form (e.g. `LIT(3)`), not re-evaluable
/// source, so the host has to track originals explicitly.
pub struct UnitSlot {
    pub vm: VM,
    pub busy: bool,
    pub tasks_completed: u64,
    pub user_words: Vec<String>,
}

/// Result of dispatching one goal.
pub struct GoalResult {
    pub unit_index: usize,
    pub output: String,
}

/// Host owning N VMs in one process. Goal dispatch is synchronous,
/// matching the JS event-loop model: while one VM evals, the others wait.
pub struct MultiUnitHost {
    pub units: Vec<UnitSlot>,
    cap: usize,
    /// Backlog of goals that arrived with no idle unit to take them — the
    /// minimal honest demand signal. The synchronous dispatch path
    /// (`execute_goal`) serves each goal immediately, so without this counter
    /// the host has no record of work it *couldn't* place. It is the "work
    /// waiting" half of [`senses_unmet_demand`](Self::senses_unmet_demand);
    /// the "no idle unit" half is read from the `busy` flags directly.
    pub pending_goals: usize,
    /// Per-host environmental signal field — the second signaling layer.
    /// MARK! deposits into it (via outbox routing); SENSE reads from it
    /// (via per-VM env_view caches refreshed between evals). Native-only
    /// in v0.28; the wasm32 demo runs without one.
    #[cfg(not(target_arch = "wasm32"))]
    pub env_field: crate::signaling::EnvironmentalField,
}

impl MultiUnitHost {
    pub fn new(cap: usize) -> Self {
        MultiUnitHost {
            units: Vec::new(),
            cap,
            pending_goals: 0,
            #[cfg(not(target_arch = "wasm32"))]
            env_field: crate::signaling::EnvironmentalField::new(),
        }
    }

    /// Default cap of 100 — well above the WASM demo's 7 but still bounded
    /// so users can't accidentally allocate gigabytes of VMs.
    pub fn with_default_cap() -> Self {
        Self::new(100)
    }

    pub fn len(&self) -> usize {
        self.units.len()
    }
    pub fn cap(&self) -> usize {
        self.cap
    }
    pub fn is_empty(&self) -> bool {
        self.units.is_empty()
    }
    pub fn is_full(&self) -> bool {
        self.units.len() >= self.cap
    }

    /// Spawn one fresh unit (loads the prelude). Returns its index, or `None`
    /// if at cap.
    pub fn spawn(&mut self) -> Option<usize> {
        if self.is_full() {
            return None;
        }
        let mut vm = VM::new();
        // Suppress banner + prelude output during boot the way wasm_entry does
        // (src/wasm_entry.rs:35–38): capture into output_buffer, then drop.
        vm.silent = true;
        vm.output_buffer = Some(String::new());
        vm.load_prelude();
        vm.output_buffer = None;
        vm.silent = false;
        let idx = self.units.len();
        // Stamp a per-unit synthesized id so SAY! signals carry distinct
        // sender attribution between siblings. The 0xC0FE prefix marks
        // these as host-synthesized rather than mesh-issued.
        vm.node_id_cache = Some([0xC0, 0xFE, 0, 0, 0, 0, 0, idx as u8]);
        self.units.push(UnitSlot {
            vm,
            busy: false,
            tasks_completed: 0,
            user_words: Vec::new(),
        });
        Some(idx)
    }

    /// Drain unit[idx]'s outbox and route each signal:
    ///   - Direct: deliver to every sibling's inbox (sender does not
    ///     self-receive).
    ///   - Environmental: deposit into the per-host `EnvironmentalField`
    ///     keyed by the signal's niche.
    ///
    /// Returns the count of cross-unit deliveries (Direct signal × sibling
    /// count); Environmental deposits are not counted in this number.
    /// Callers invoke after eval to propagate SAY! / MARK! emissions.
    pub fn route_signals_from(&mut self, idx: usize) -> usize {
        if idx >= self.units.len() {
            return 0;
        }
        let outgoing: Vec<crate::signaling::Signal> =
            std::mem::take(&mut self.units[idx].vm.outbox);
        if outgoing.is_empty() {
            return 0;
        }
        let mut delivered = 0;
        for signal in &outgoing {
            match &signal.kind {
                crate::signaling::SignalKind::Direct => {
                    for (j, slot) in self.units.iter_mut().enumerate() {
                        if j == idx {
                            continue;
                        }
                        slot.vm.inbox.push(signal.clone());
                        delivered += 1;
                    }
                }
                #[cfg(not(target_arch = "wasm32"))]
                crate::signaling::SignalKind::Environmental { niche } => {
                    self.env_field.deposit(niche.clone(), signal.value as f64);
                }
                #[cfg(target_arch = "wasm32")]
                crate::signaling::SignalKind::Environmental { .. } => {
                    // No-op on wasm32 — MARK! shim never produces these
                    // signals, but defend against future code paths.
                }
            }
        }
        delivered
    }

    /// Refresh unit[idx]'s `env_view` cache from the per-host environmental
    /// field, keyed by its dominant niche. Called between evals so SENSE
    /// returns a current value. Native-only.
    #[cfg(not(target_arch = "wasm32"))]
    pub fn refresh_env_view(&mut self, idx: usize) {
        if idx >= self.units.len() {
            return;
        }
        let niche = crate::niche::dominant_niche(&self.units[idx].vm.niche_profile)
            .map(|(k, _)| k)
            .unwrap_or_else(|| "general".to_string());
        let v = self.env_field.sense(&niche);
        self.units[idx].vm.env_view = v;
    }

    /// Apply one decay step to the environmental field. Native-only; the
    /// wasm32 demo has no field to age.
    #[cfg(not(target_arch = "wasm32"))]
    pub fn env_decay_tick(&mut self) {
        self.env_field.decay_tick();
    }

    /// Define a word on one specific unit and record the source string in
    /// that unit's `user_words` so it can later be taught to siblings.
    /// `definition` should look like `": NAME ... ;"`.
    pub fn define_on(&mut self, idx: usize, definition: &str) -> bool {
        if idx >= self.units.len() {
            return false;
        }
        self.units[idx].vm.eval(definition);
        self.units[idx].user_words.push(definition.to_string());
        true
    }

    /// Spawn up to `n` units; stops when at cap. Returns count actually spawned.
    pub fn spawn_n(&mut self, n: usize) -> usize {
        let mut spawned = 0;
        for _ in 0..n {
            if self.spawn().is_none() {
                break;
            }
            spawned += 1;
        }
        spawned
    }

    /// Pick the least-busy idle unit by tasks_completed. Skips busy units.
    /// Falls back to unit 0 if every unit is busy. Returns `None` only when
    /// the host is empty. Mirrors `_pickWorker` (web/unit.js:167).
    pub fn pick_worker(&self) -> Option<usize> {
        if self.units.is_empty() {
            return None;
        }
        let mut best: Option<usize> = None;
        let mut best_score: u64 = u64::MAX;
        for (i, slot) in self.units.iter().enumerate() {
            if slot.busy {
                continue;
            }
            if slot.tasks_completed < best_score {
                best_score = slot.tasks_completed;
                best = Some(i);
            }
        }
        best.or(Some(0))
    }

    /// Dispatch one Forth expression to the least-busy unit. Captures the
    /// VM's output. Returns `None` if the host is empty.
    pub fn execute_goal(&mut self, code: &str) -> Option<GoalResult> {
        let i = self.pick_worker()?;
        let slot = &mut self.units[i];
        slot.busy = true;
        let output = slot.vm.eval(code);
        slot.tasks_completed += 1;
        slot.busy = false;
        Some(GoalResult {
            unit_index: i,
            output,
        })
    }

    /// Eval `definition` on every unit (zero-copy `&str` reuse — same address
    /// space, no serialization). Records `definition` in each unit's
    /// `user_words`. Mirrors `shareWord` (web/unit.js:196).
    pub fn share_word(&mut self, definition: &str) {
        for slot in self.units.iter_mut() {
            slot.vm.eval(definition);
            slot.user_words.push(definition.to_string());
        }
    }

    /// Copy named user-defined words from `source_idx` to every other unit.
    /// Looks up each name in `source.user_words` for a matching `: NAME ...`
    /// definition string (last one wins) and re-evaluates it on siblings.
    /// Mirrors `teachFrom` (web/unit.js:204) — but uses the host's tracked
    /// definitions rather than `SEE`, since `SEE`'s output is decompiled
    /// internal form (e.g. `LIT(3)`) and not re-evaluable.
    /// Returns the names actually taught.
    pub fn teach_from(&mut self, source_idx: usize, words: &[&str]) -> Vec<String> {
        let mut taught = Vec::new();
        if source_idx >= self.units.len() {
            return taught;
        }
        // For each requested name, find the most recent matching `: NAME ...`
        // entry in source's user_words.
        let mut to_replay: Vec<(String, String)> = Vec::new();
        for &word in words {
            let needle = format!(": {} ", word);
            let needle_alt = format!(": {}\n", word);
            let def = self.units[source_idx]
                .user_words
                .iter()
                .rev()
                .find(|d| {
                    let t = d.trim_start();
                    t.starts_with(&needle) || t.starts_with(&needle_alt)
                })
                .cloned();
            if let Some(d) = def {
                to_replay.push((word.to_string(), d));
            }
        }
        for (word, def) in to_replay {
            taught.push(word);
            for (i, slot) in self.units.iter_mut().enumerate() {
                if i == source_idx {
                    continue;
                }
                slot.vm.eval(&def);
                slot.user_words.push(def.clone());
            }
        }
        taught
    }

    /// True iff this host senses unmet demand it cannot currently serve:
    /// there is work waiting (`pending_goals > 0`) AND no idle unit to take it
    /// (every unit is busy). Both halves come from existing dispatch state —
    /// `pending_goals` and the per-unit `busy` flags — not from any new global
    /// signal. An empty host senses nothing.
    ///
    /// This is the demand half of the local replication rule: if any unit is
    /// idle, the colony can already serve its load and must not replicate.
    pub fn senses_unmet_demand(&self) -> bool {
        self.pending_goals > 0
            && !self.units.is_empty()
            && self.units.iter().all(|u| u.busy)
    }

    /// The local replication rule every coordinate runs. It replicates one
    /// unit IFF there is unmet demand this host can serve AND the spawn guard
    /// (quarantine / max_children / cooldown) plus the binding-constraint
    /// ceiling both permit it.
    ///
    /// There is no coordinator, no quorum, no global counter, and no target
    /// population: just `demand ∧ headroom`, evaluated from this host's own
    /// state. Returns `Ok(())` when the rule fires; `Err(reason)` otherwise —
    /// `"no unmet demand"` when the colony can already serve its load, or the
    /// guard/ceiling refusal string from
    /// [`SpawnState::can_spawn_within`](crate::spawn::SpawnState::can_spawn_within).
    pub fn replication_decision(
        &self,
        res: &crate::resources::HostResources,
        spawn_state: &crate::spawn::SpawnState,
    ) -> Result<(), String> {
        if !self.senses_unmet_demand() {
            return Err("no unmet demand".into());
        }
        spawn_state.can_spawn_within(res)
    }

    /// The no-work fall-through: a unit with no assigned goal speculatively
    /// evolves against open challenges rather than sitting idle. Routes through
    /// the existing `GP-EVOLVE` VM word — which is energy-gated there, so a
    /// unit that can't pay starves — rather than duplicating the evolution
    /// loop. Returns the index of the unit set to work, or `None` if every
    /// unit is already busy (nothing idle to put to work).
    ///
    /// Surplus self-resolves through that energy metabolism; this adds no
    /// reclaim or cull logic.
    pub fn evolve_one_unworked(&mut self) -> Option<usize> {
        let idx = self.units.iter().position(|u| !u.busy)?;
        let slot = &mut self.units[idx];
        slot.busy = true;
        slot.vm.eval("GP-EVOLVE");
        slot.busy = false;
        Some(idx)
    }
}

// ===========================================================================
// MultiUnitNode — bridge between in-process units and the inter-process mesh
// ===========================================================================
//
// Two-tier deployment:
//   * `host: MultiUnitHost` — N in-process VMs, O(1) communication via
//     direct `eval`. The host is the failure boundary.
//   * `mesh: Option<MeshNode>` — one process-level peer in the mesh, talking
//     UDP gossip to other processes via the existing bounded-k pipeline.
//
// Addressing is explicit. Local sibling reach uses the host directly
// (`share_word`, `teach_from`). Remote reach uses `send_to_process` /
// `drain_and_dispatch` here, which sit on top of `MeshNode::send_sexp` and
// `recv_sexp_messages` unchanged. The mesh peer is the *process*, not the
// unit — peers advertise their unit count via `MeshNode::set_load`.
//
// Crash semantics are fate-shared: when a host process dies, its UDP
// socket closes and its heartbeats stop. Other peers' `evict_peers_older_than`
// (or the network thread's 15s timer) eventually removes the dead peer.
// In-flight work on the dead host is simply gone — no resurrection, no
// per-unit liveness tracking.

use crate::mesh::{self, MeshNode, NodeId};
use std::net::SocketAddr;

#[derive(Debug, Clone)]
pub struct RemoteProcess {
    pub host_id: NodeId,
    pub host_id_hex: String,
    pub units_hosted: u32,
    /// The peer's advertised resource headroom (`0..=100`), gossiped via the
    /// heartbeat. The input to sufficient-first placement.
    pub advertised_headroom: u8,
    pub addr: SocketAddr,
}

#[derive(Debug, Clone)]
pub struct DispatchedRemoteMsg {
    pub from_host_hex: String,
    pub unit_index: usize,
    pub output: String,
}

pub struct MultiUnitNode {
    pub host: MultiUnitHost,
    pub mesh: Option<MeshNode>,
}

impl MultiUnitNode {
    /// Create a new node. If `mesh_port` is `Some(p)`, start a `MeshNode` on
    /// port `p` (use 0 for OS-assigned). `seed_peers` lets this node bootstrap
    /// onto an existing mesh.
    pub fn new(
        cap: usize,
        mesh_port: Option<u16>,
        seed_peers: Vec<SocketAddr>,
    ) -> Result<Self, String> {
        let mesh = match mesh_port {
            Some(p) => Some(MeshNode::start(p, seed_peers)?),
            None => None,
        };
        Ok(MultiUnitNode {
            host: MultiUnitHost::new(cap),
            mesh,
        })
    }

    /// This host process's mesh node id, or `None` if running without a mesh.
    pub fn host_id(&self) -> Option<NodeId> {
        self.mesh.as_ref().map(|m| *m.id())
    }

    pub fn host_id_hex(&self) -> Option<String> {
        self.host_id().map(|id| mesh::id_to_hex(&id))
    }

    /// UDP port this node's mesh is bound to, or `None` if no mesh.
    pub fn mesh_port(&self) -> Option<u16> {
        self.mesh.as_ref().map(|m| m.local_port())
    }

    /// Number of in-process units (= sibling count + 1 from any unit's view).
    pub fn host_unit_count(&self) -> usize {
        self.host.len()
    }

    /// Spawn `n` in-process units, inject host-aware Forth constants per unit,
    /// and re-advertise the new unit count via the mesh's heartbeat field.
    pub fn spawn_n(&mut self, n: usize) -> usize {
        let before = self.host.len();
        let count = self.host.spawn_n(n);
        let host_hex = self.host_id_hex().unwrap_or_default();
        for i in before..self.host.len() {
            inject_host_constants(&mut self.host.units[i].vm, &host_hex, i);
        }
        // Update each existing unit's SIBLING-COUNT variable (in case more
        // siblings just appeared). New siblings reflect host.len() - 1.
        let siblings = self.host.len().saturating_sub(1) as i64;
        for slot in self.host.units.iter_mut() {
            slot.vm.eval(&format!("{} _SIBLINGS !", siblings));
        }
        // Advertise unit count + current resource headroom via the heartbeat,
        // then trigger one now so peers learn quickly.
        if let Some(ref m) = self.mesh {
            m.set_load(self.host.len() as u32);
            m.set_headroom(crate::resources::HostResources::measure().advertised_headroom_pct());
            m.force_heartbeat();
        }
        count
    }

    /// Re-measure this coordinate's resources and re-advertise its headroom on
    /// the heartbeat. Cheap; callers can invoke on tick so the gossiped view
    /// stays current as load changes. No-op without a mesh.
    pub fn advertise_resources(&self) {
        if let Some(ref m) = self.mesh {
            m.set_headroom(crate::resources::HostResources::measure().advertised_headroom_pct());
        }
    }

    /// Snapshot of remote processes seen via the mesh, with their advertised
    /// in-process unit counts (i.e. peer.load). Excludes self.
    pub fn remote_processes(&self) -> Vec<RemoteProcess> {
        let mesh = match self.mesh.as_ref() {
            Some(m) => m,
            None => return Vec::new(),
        };
        let my_id = *mesh.id();
        mesh.peer_resource_view()
            .into_iter()
            .filter(|(id, _, _, _)| *id != my_id)
            .map(|(id, load, headroom, addr)| RemoteProcess {
                host_id: id,
                host_id_hex: mesh::id_to_hex(&id),
                units_hosted: load,
                advertised_headroom: headroom,
                addr,
            })
            .collect()
    }

    /// Send a payload to a specific remote process by host id. The payload is
    /// wrapped as `(host-msg :to "<hex>" :from "<hex>" :payload "<text>")` and
    /// sent via the existing mesh.send_sexp gossip path. Returns true if the
    /// target was found in the peer table and a packet was put on the wire.
    pub fn send_to_process(&self, target: &NodeId, payload: &str) -> bool {
        let mesh = match self.mesh.as_ref() {
            Some(m) => m,
            None => return false,
        };
        let target_addr = mesh
            .peer_unit_counts()
            .into_iter()
            .find(|(id, _, _)| id == target)
            .map(|(_, _, addr)| addr);
        let addr = match target_addr {
            Some(a) => a,
            None => return false,
        };
        let from_hex = mesh::id_to_hex(mesh.id());
        let to_hex = mesh::id_to_hex(target);
        // Escape double quotes in payload to keep the s-expression parseable.
        let safe = payload.replace('"', "'");
        let sexp = format!(
            "(host-msg :to \"{}\" :from \"{}\" :payload \"{}\")",
            to_hex, from_hex, safe
        );
        mesh.send_sexp_to(addr, &sexp);
        true
    }

    /// True iff THIS coordinate is mislocated: it is over the ceiling — local
    /// `has_headroom()` is false. The honest trigger is local resource
    /// pressure; there is no separate mislocation score. A coordinate with
    /// local headroom is content and never tries to relocate its units.
    pub fn is_mislocated(&self, local: &crate::resources::HostResources) -> bool {
        crate::transport::is_mislocated(local)
    }

    /// Sufficient-first destination from this node's own gossiped resource
    /// view: the FIRST peer that advertises enough headroom to hold a unit, in
    /// gossip-view order — not the emptiest. Frugal, mirrors minimum-sufficient,
    /// avoids a thundering herd. `None` if no peer advertises sufficient room.
    pub fn choose_destination(&self) -> Option<RemoteProcess> {
        self.remote_processes()
            .into_iter()
            .find(|p| crate::resources::headroom_pct_sufficient(p.advertised_headroom))
    }

    /// Relocate unit `idx` to `dest_addr`, performing the actual transport via
    /// the injected `send` closure (the real
    /// [`send_transport`](crate::transport::send_transport) in production, a
    /// stub in tests). It captures the unit's complete self as serialized USAV
    /// bytes and hands them to `send`.
    ///
    /// Confirm-before-release at the placement layer: the origin slot is
    /// retired (removed from the host) ONLY on `Ok(ConfirmOutcome::Accepted)` —
    /// a confirmed live copy on the destination. On any `Err` the slot is
    /// retained, untouched; the unit keeps running exactly as it was. A peer
    /// that lied about its headroom simply refuses at the transport layer, so
    /// `send` returns `Err` and the unit stays — no detection, no blacklist.
    pub fn relocate_unit_with<S>(
        &mut self,
        idx: usize,
        send: S,
    ) -> Result<crate::transport::ConfirmOutcome, crate::transport::TransportError>
    where
        S: FnOnce(&[u8]) -> Result<crate::transport::ConfirmOutcome, crate::transport::TransportError>,
    {
        if idx >= self.host.units.len() {
            return Err(crate::transport::TransportError::Io("no such unit".into()));
        }
        // Capture the complete self (USAV bytes) — the transport payload.
        let snap = self.host.units[idx].vm.make_snapshot();
        let payload = crate::persist::serialize_snapshot(&snap);
        let outcome = send(&payload);
        if crate::transport::should_release(&outcome) {
            // Released: a live copy exists elsewhere. Retire the origin slot.
            self.host.units.remove(idx);
        }
        outcome
    }

    /// Drain any pending mesh messages. For each `(host-msg :to <us> ...)`
    /// envelope, dispatch the payload to one of our in-process units via
    /// `host.execute_goal` (least-busy picker) and record the result. Other
    /// messages (heartbeats, other s-expressions) are left to be handled by
    /// callers that need them.
    pub fn drain_and_dispatch(&mut self) -> Vec<DispatchedRemoteMsg> {
        let mut events = Vec::new();
        let (raw_msgs, my_hex) = match self.mesh.as_ref() {
            Some(m) => (m.recv_sexp_messages(), mesh::id_to_hex(m.id())),
            None => return events,
        };
        for raw in raw_msgs {
            let parsed = match crate::sexp::try_parse_mesh_msg(&raw) {
                Some(s) => s,
                None => continue,
            };
            if crate::sexp::msg_type(&parsed) != Some("host-msg") {
                continue;
            }
            let to = parsed
                .get_key(":to")
                .and_then(|s| s.as_str())
                .unwrap_or("")
                .to_string();
            if to != my_hex {
                continue;
            }
            let from = parsed
                .get_key(":from")
                .and_then(|s| s.as_str())
                .unwrap_or("?")
                .to_string();
            let payload = parsed
                .get_key(":payload")
                .and_then(|s| s.as_str())
                .unwrap_or("")
                .to_string();
            if payload.is_empty() {
                continue;
            }
            if let Some(r) = self.host.execute_goal(&payload) {
                // Refresh _SIBLINGS in case spawn happened mid-flight; cheap.
                let siblings = self.host.len().saturating_sub(1) as i64;
                self.host.units[r.unit_index]
                    .vm
                    .eval(&format!("{} _SIBLINGS !", siblings));
                events.push(DispatchedRemoteMsg {
                    from_host_hex: from,
                    unit_index: r.unit_index,
                    output: r.output,
                });
            }
        }
        // Refresh each unit's MESH-PROCESS-COUNT variable from the live table.
        let remotes = self.remote_processes().len() as i64;
        for slot in self.host.units.iter_mut() {
            slot.vm.eval(&format!("{} _REMOTES !", remotes));
        }
        events
    }
}

/// Inject the host-aware constants and variables that a unit's Forth source
/// can read. Mirrors the WASM model's BROWSER-PEERS pattern (web/unit.js:83):
/// constants for stable values, VARIABLEs for ones the host updates.
fn inject_host_constants(vm: &mut crate::vm::VM, host_id_hex: &str, unit_idx: usize) {
    // Constants — set once per unit.
    vm.eval(&format!(": HOST-ID .\" {}\" CR ;", host_id_hex));
    vm.eval(&format!(": UNIT-IDX {} ;", unit_idx));
    // Live values — backed by host-updated variables.
    vm.eval("VARIABLE _SIBLINGS 0 _SIBLINGS !");
    vm.eval(": SIBLING-COUNT _SIBLINGS @ ;");
    vm.eval("VARIABLE _REMOTES 0 _REMOTES !");
    vm.eval(": MESH-PROCESS-COUNT _REMOTES @ ;");
}

#[cfg(test)]
mod bridge_tests {
    use super::*;
    use std::time::Duration;

    /// Helper: spin two MultiUnitNodes pointing at each other on loopback,
    /// force a heartbeat exchange, and return them. Eviction is bypassed
    /// for the tests' wall-time (heartbeats every 2s otherwise).
    fn pair(units_a: usize, units_b: usize) -> (MultiUnitNode, MultiUnitNode) {
        let mut a = MultiUnitNode::new(64, Some(0), vec![]).expect("start a");
        a.spawn_n(units_a);
        let a_addr: SocketAddr = format!("127.0.0.1:{}", a.mesh_port().unwrap())
            .parse()
            .unwrap();
        let mut b = MultiUnitNode::new(64, Some(0), vec![a_addr]).expect("start b");
        b.spawn_n(units_b);
        // Bidirectional heartbeat exchange so each peer table contains the other.
        for _ in 0..3 {
            a.mesh.as_ref().unwrap().force_heartbeat();
            b.mesh.as_ref().unwrap().force_heartbeat();
            std::thread::sleep(Duration::from_millis(20));
        }
        (a, b)
    }

    #[test]
    fn host_id_is_set_and_stable() {
        let mut a = MultiUnitNode::new(8, Some(0), vec![]).unwrap();
        a.spawn_n(2);
        let id1 = a.host_id().unwrap();
        let id2 = a.host_id().unwrap();
        assert_eq!(id1, id2);
        assert_eq!(a.host_id_hex().unwrap().len(), 16);
    }

    #[test]
    fn sibling_count_excludes_self() {
        let mut a = MultiUnitNode::new(8, None, vec![]).unwrap();
        a.spawn_n(4);
        // From any unit's view: 3 siblings.
        let out = a.host.units[0].vm.eval("SIBLING-COUNT .");
        assert!(out.contains('3'), "out: {:?}", out);
    }

    #[test]
    fn remote_processes_excludes_self_and_includes_unit_count() {
        let (mut a, b) = pair(2, 3);
        let _ = a.drain_and_dispatch(); // ignore any stray heartbeat envelopes
        let remotes = a.remote_processes();
        // a's table should contain exactly b (one peer), with units_hosted = 3.
        let b_id = b.host_id().unwrap();
        let entry = remotes
            .iter()
            .find(|r| r.host_id == b_id)
            .expect("b not visible from a");
        assert_eq!(entry.units_hosted, 3, "b advertised wrong unit count");
        assert!(
            !remotes.iter().any(|r| r.host_id == a.host_id().unwrap()),
            "remote_processes must exclude self"
        );
    }

    #[test]
    fn cross_process_message_is_dispatched_to_a_local_unit() {
        let (mut a, mut b) = pair(2, 3);
        let _ = a.drain_and_dispatch();
        let _ = b.drain_and_dispatch();
        let b_id = b.host_id().unwrap();
        // a sends a Forth fragment to b; b should dispatch to one of its units.
        assert!(a.send_to_process(&b_id, "2 3 + ."));
        // Give the OS a moment to deliver the UDP packet.
        std::thread::sleep(Duration::from_millis(50));
        let dispatched = b.drain_and_dispatch();
        assert_eq!(dispatched.len(), 1, "expected 1 dispatched msg, got {:?}", dispatched);
        let ev = &dispatched[0];
        assert!(ev.unit_index < b.host.len());
        assert!(
            ev.output.contains('5'),
            "expected `5` in dispatched output: {:?}",
            ev.output
        );
        // The dispatched unit's tasks_completed should have incremented.
        assert_eq!(b.host.units[ev.unit_index].tasks_completed, 1);
    }

    #[test]
    fn host_crash_evicts_peer_from_remote_table() {
        let (mut a, b) = pair(2, 2);
        let _ = a.drain_and_dispatch();
        // Sanity: a sees b.
        let b_id = b.host_id().unwrap();
        assert!(a.remote_processes().iter().any(|r| r.host_id == b_id));
        // Drop b; its mesh thread shuts down and heartbeats stop.
        drop(b);
        // Wait long enough that b's last_seen is stale by our threshold.
        std::thread::sleep(Duration::from_millis(80));
        // Force a's prune with a 50ms threshold — b's entry is older than that.
        let evicted = a
            .mesh
            .as_ref()
            .unwrap()
            .evict_peers_older_than(Duration::from_millis(50));
        assert!(evicted >= 1, "expected to evict at least 1 stale peer");
        assert!(
            !a.remote_processes().iter().any(|r| r.host_id == b_id),
            "b should be gone from a's remote_processes after eviction"
        );
    }

    #[test]
    fn host_constants_are_per_unit() {
        let mut a = MultiUnitNode::new(8, Some(0), vec![]).unwrap();
        a.spawn_n(3);
        // UNIT-IDX should differ per unit.
        for i in 0..3 {
            let out = a.host.units[i].vm.eval("UNIT-IDX .");
            assert!(
                out.contains(&i.to_string()),
                "unit {} UNIT-IDX out: {:?}",
                i,
                out
            );
        }
    }

    // -----------------------------------------------------------------------
    // Resource-aware placement (PART A gossip + PART B sufficient-first)
    // -----------------------------------------------------------------------

    /// Force a few more heartbeats from `b` so `a` re-learns its advertisement.
    fn settle_heartbeats(a: &MultiUnitNode, b: &MultiUnitNode) {
        for _ in 0..3 {
            b.mesh.as_ref().unwrap().force_heartbeat();
            a.mesh.as_ref().unwrap().force_heartbeat();
            std::thread::sleep(Duration::from_millis(20));
        }
    }

    #[test]
    fn gossiped_headroom_surfaces_on_remote_processes() {
        let (mut a, b) = pair(1, 1);
        // b advertises a known headroom; round-trip it through the heartbeat.
        b.mesh.as_ref().unwrap().set_headroom(57);
        settle_heartbeats(&a, &b);
        let _ = a.drain_and_dispatch();
        let b_id = b.host_id().unwrap();
        let entry = a
            .remote_processes()
            .into_iter()
            .find(|r| r.host_id == b_id)
            .expect("b not visible from a");
        assert_eq!(
            entry.advertised_headroom, 57,
            "advertised headroom must round-trip the heartbeat"
        );
    }

    #[test]
    fn node_choose_destination_picks_sufficient_peer() {
        let (mut a, b) = pair(1, 1);
        b.mesh.as_ref().unwrap().set_headroom(60); // > 20 → sufficient
        settle_heartbeats(&a, &b);
        let _ = a.drain_and_dispatch();
        let dest = a.choose_destination().expect("b advertises room");
        assert_eq!(dest.host_id, b.host_id().unwrap());
    }

    #[test]
    fn node_choose_destination_none_when_no_peer_sufficient() {
        let (mut a, b) = pair(1, 1);
        b.mesh.as_ref().unwrap().set_headroom(5); // < 20 → insufficient
        settle_heartbeats(&a, &b);
        let _ = a.drain_and_dispatch();
        assert!(
            a.choose_destination().is_none(),
            "no peer advertises sufficient room"
        );
    }

    #[test]
    fn node_is_mislocated_tracks_local_headroom() {
        let a = MultiUnitNode::new(8, None, vec![]).unwrap();
        let healthy = crate::resources::HostResources::from_parts(1000, 500, 0.0, 4);
        assert!(!a.is_mislocated(&healthy), "with room a unit never flees");
        let pressed = crate::resources::HostResources::from_parts(1000, 50, 0.0, 4);
        assert!(a.is_mislocated(&pressed), "over the ceiling → mislocated");
    }

    #[test]
    fn relocate_retires_origin_only_on_confirmed_copy() {
        use crate::transport::{ConfirmOutcome, TransportError};
        let mut a = MultiUnitNode::new(8, None, vec![]).unwrap();
        a.spawn_n(3);
        assert_eq!(a.host.len(), 3);

        // Transport REFUSED (or any Err) → origin slot retained, untouched.
        let out = a.relocate_unit_with(1, |_payload| Err(TransportError::Refused));
        assert!(out.is_err());
        assert_eq!(
            a.host.len(),
            3,
            "a refused/failed transport must NOT retire the origin"
        );

        // Transport ACCEPTED → confirmed live copy → origin slot retired.
        let out = a.relocate_unit_with(1, |payload| {
            assert!(!payload.is_empty(), "the complete self must be captured");
            Ok(ConfirmOutcome::Accepted)
        });
        assert!(matches!(out, Ok(ConfirmOutcome::Accepted)));
        assert_eq!(
            a.host.len(),
            2,
            "confirmed live copy → origin slot retired (released)"
        );
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn spawn_respects_cap() {
        let mut h = MultiUnitHost::new(3);
        assert_eq!(h.spawn(), Some(0));
        assert_eq!(h.spawn(), Some(1));
        assert_eq!(h.spawn(), Some(2));
        assert!(h.is_full());
        assert_eq!(h.spawn(), None);
        assert_eq!(h.len(), 3);
    }

    #[test]
    fn spawn_n_returns_actual_count() {
        let mut h = MultiUnitHost::new(5);
        assert_eq!(h.spawn_n(3), 3);
        assert_eq!(h.spawn_n(10), 2); // only 2 slots remain
        assert_eq!(h.len(), 5);
    }

    #[test]
    fn pick_worker_picks_least_busy() {
        let mut h = MultiUnitHost::new(5);
        h.spawn_n(3);
        h.units[0].tasks_completed = 5;
        h.units[1].tasks_completed = 1;
        h.units[2].tasks_completed = 3;
        assert_eq!(h.pick_worker(), Some(1));
    }

    #[test]
    fn pick_worker_skips_busy() {
        let mut h = MultiUnitHost::new(5);
        h.spawn_n(3);
        h.units[0].busy = true;
        h.units[1].busy = true;
        h.units[2].tasks_completed = 7;
        assert_eq!(h.pick_worker(), Some(2));
    }

    #[test]
    fn pick_worker_falls_back_to_zero_when_all_busy() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        h.units[0].busy = true;
        h.units[1].busy = true;
        assert_eq!(h.pick_worker(), Some(0));
    }

    #[test]
    fn pick_worker_returns_none_when_empty() {
        let h = MultiUnitHost::new(3);
        assert_eq!(h.pick_worker(), None);
    }

    #[test]
    fn execute_goal_runs_and_increments_tasks() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        let r = h.execute_goal("2 3 + .").unwrap();
        assert!(r.output.contains('5'), "output: {:?}", r.output);
        assert_eq!(h.units[r.unit_index].tasks_completed, 1);
        assert!(!h.units[r.unit_index].busy);
    }

    #[test]
    fn execute_goal_round_robins_across_idle_units() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(3);
        // First three goals should hit three different units (all start at 0
        // tasks_completed; pick_worker returns the first encountered min).
        let r0 = h.execute_goal("1 .").unwrap();
        let r1 = h.execute_goal("2 .").unwrap();
        let r2 = h.execute_goal("3 .").unwrap();
        let mut hits = vec![r0.unit_index, r1.unit_index, r2.unit_index];
        hits.sort();
        assert_eq!(hits, vec![0, 1, 2], "expected one goal per unit");
    }

    #[test]
    fn share_word_makes_word_available_on_every_unit() {
        let mut h = MultiUnitHost::new(5);
        h.spawn_n(3);
        h.share_word(": DOUBLE 2 * ;");
        for i in 0..3 {
            let out = h.units[i].vm.eval("21 DOUBLE .");
            assert!(out.contains("42"), "unit {} output: {:?}", i, out);
        }
    }

    #[test]
    fn teach_from_copies_definition_to_others() {
        let mut h = MultiUnitHost::new(5);
        h.spawn_n(3);
        // Define a word only on unit 0 (use define_on to record source string).
        assert!(h.define_on(0, ": TRIPLE 3 * ;"));
        // Sanity: unit 1 doesn't know it yet.
        let probe = h.units[1].vm.eval("7 TRIPLE .");
        assert!(
            probe.contains("unknown"),
            "unit 1 already knows TRIPLE: {:?}",
            probe
        );
        // Teach from unit 0.
        let taught = h.teach_from(0, &["TRIPLE"]);
        assert_eq!(taught, vec!["TRIPLE".to_string()]);
        // Units 1 and 2 now know TRIPLE.
        for i in 1..3 {
            let out = h.units[i].vm.eval("7 TRIPLE .");
            assert!(out.contains("21"), "unit {} output: {:?}", i, out);
        }
    }

    #[test]
    fn define_on_records_user_word() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(1);
        assert!(h.define_on(0, ": HELLO 99 ;"));
        assert_eq!(h.units[0].user_words, vec![": HELLO 99 ;".to_string()]);
        let out = h.units[0].vm.eval("HELLO .");
        assert!(out.contains("99"), "out: {:?}", out);
    }

    #[test]
    fn share_word_records_user_word_on_every_unit() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        h.share_word(": GREET 42 ;");
        for slot in &h.units {
            assert_eq!(slot.user_words, vec![": GREET 42 ;".to_string()]);
        }
    }

    #[test]
    fn teach_from_skips_unknown_words() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        // No unit defines NOPE; teach_from should return empty.
        let taught = h.teach_from(0, &["NOPE-NOT-A-WORD"]);
        assert!(taught.is_empty(), "got: {:?}", taught);
    }

    // -----------------------------------------------------------------------
    // Signaling host integration (v0.28)
    // -----------------------------------------------------------------------

    #[test]
    fn say_then_route_lands_in_sibling_inboxes() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(3);
        // Unit 0 says "42".
        h.units[0].vm.eval("42 SAY!");
        assert_eq!(h.units[0].vm.outbox.len(), 1);
        let delivered = h.route_signals_from(0);
        assert_eq!(delivered, 2, "should reach both siblings, not self");
        assert_eq!(h.units[0].vm.inbox.len(), 0, "sender does not self-receive");
        assert_eq!(h.units[1].vm.inbox.len(), 1);
        assert_eq!(h.units[2].vm.inbox.len(), 1);
        assert_eq!(h.units[1].vm.inbox.iter().next().unwrap().value, 42);
    }

    #[test]
    fn route_clears_outbox_after_delivery() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        h.units[0].vm.eval("7 SAY!");
        h.route_signals_from(0);
        assert!(h.units[0].vm.outbox.is_empty());
    }

    #[test]
    fn listen_drains_signals_in_order() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        h.units[0].vm.eval("100 SAY!");
        h.route_signals_from(0);
        h.units[0].vm.eval("200 SAY!");
        h.route_signals_from(0);
        // Unit 1 has two signals; LISTEN twice returns oldest first.
        h.units[1].vm.eval("LISTEN");
        let after_first: Vec<i64> = h.units[1].vm.stack.clone();
        assert_eq!(after_first, vec![100, -1]);
        h.units[1].vm.stack.clear();
        h.units[1].vm.eval("LISTEN");
        assert_eq!(h.units[1].vm.stack, vec![200, -1]);
    }

    #[test]
    fn route_from_invalid_idx_is_zero() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        assert_eq!(h.route_signals_from(99), 0);
    }

    #[test]
    fn route_with_empty_outbox_delivers_nothing() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        assert_eq!(h.route_signals_from(0), 0);
        assert!(h.units[1].vm.inbox.is_empty());
    }

    #[test]
    fn spawn_assigns_distinct_node_ids() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(3);
        let id0 = h.units[0].vm.node_id_cache.unwrap();
        let id1 = h.units[1].vm.node_id_cache.unwrap();
        let id2 = h.units[2].vm.node_id_cache.unwrap();
        assert_ne!(id0, id1);
        assert_ne!(id1, id2);
        // Sender attribution is preserved through routing.
        h.units[0].vm.eval("5 SAY!");
        h.route_signals_from(0);
        let received = h.units[1].vm.inbox.iter().next().unwrap();
        assert_eq!(received.sender, id0);
    }

    // -----------------------------------------------------------------------
    // Environmental signaling host integration (v0.28, native-only)
    // -----------------------------------------------------------------------

    #[cfg(not(target_arch = "wasm32"))]
    #[test]
    fn mark_then_route_deposits_in_env_field() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        h.units[0]
            .vm
            .niche_profile
            .specializations
            .insert("fibonacci".to_string(), 0.9);
        h.units[0].vm.eval("100 MARK!");
        h.route_signals_from(0);
        assert_eq!(h.env_field.sense("fibonacci"), 100);
        assert_eq!(h.env_field.sense("general"), 0);
        // Direct delivery count for env signals is zero.
        assert_eq!(h.units[1].vm.inbox.len(), 0);
    }

    #[cfg(not(target_arch = "wasm32"))]
    #[test]
    fn refresh_env_view_populates_sense() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        h.env_field.deposit("fibonacci".to_string(), 200.0);
        h.units[1]
            .vm
            .niche_profile
            .specializations
            .insert("fibonacci".to_string(), 0.9);
        h.refresh_env_view(1);
        h.units[1].vm.eval("SENSE");
        assert_eq!(h.units[1].vm.stack, vec![200]);
    }

    #[cfg(not(target_arch = "wasm32"))]
    #[test]
    fn env_decay_tick_ages_field() {
        let mut h = MultiUnitHost::new(1);
        h.spawn_n(1);
        h.env_field.deposit("fib".to_string(), 100.0);
        for _ in 0..5 {
            h.env_decay_tick();
        }
        // 100 * 0.95^5 ≈ 77
        let v = h.env_field.sense("fib");
        assert!((76..=78).contains(&v), "got {}", v);
    }

    #[cfg(not(target_arch = "wasm32"))]
    #[test]
    fn mixed_say_and_mark_route_correctly() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        h.units[0]
            .vm
            .niche_profile
            .specializations
            .insert("sorting".to_string(), 0.9);
        // One SAY! and one MARK! from the same unit, same eval cycle.
        h.units[0].vm.eval("7 SAY! 50 MARK!");
        h.route_signals_from(0);
        // Direct went to sibling.
        assert_eq!(h.units[1].vm.inbox.len(), 1);
        assert_eq!(h.units[1].vm.inbox.iter().next().unwrap().value, 7);
        // Environmental went to the field.
        assert_eq!(h.env_field.sense("sorting"), 50);
    }

    // -----------------------------------------------------------------------
    // Emergent local replication rule (resource-aware self-replication)
    // -----------------------------------------------------------------------

    #[test]
    fn senses_unmet_demand_false_when_idle_unit_exists() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(3);
        h.pending_goals = 1;
        h.units[0].busy = true;
        h.units[1].busy = true;
        // Unit 2 is idle — the colony can serve the waiting goal itself.
        assert!(!h.senses_unmet_demand());
    }

    #[test]
    fn senses_unmet_demand_false_when_no_work_waiting() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        h.units[0].busy = true;
        h.units[1].busy = true;
        // All busy, but nothing is waiting — no demand.
        assert_eq!(h.pending_goals, 0);
        assert!(!h.senses_unmet_demand());
    }

    #[test]
    fn senses_unmet_demand_true_only_when_all_busy_with_waiting_work() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        h.units[0].busy = true;
        h.units[1].busy = true;
        h.pending_goals = 1;
        assert!(h.senses_unmet_demand());
    }

    #[test]
    fn senses_unmet_demand_false_on_empty_host() {
        let mut h = MultiUnitHost::new(3);
        h.pending_goals = 5; // demand recorded, but no units to be busy
        assert!(!h.senses_unmet_demand());
    }

    #[test]
    fn replication_decision_fires_only_on_demand_and_headroom() {
        use crate::resources::HostResources;
        use crate::spawn::SpawnState;

        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        let healthy = HostResources::from_parts(1000, 500, 0.0, 4); // 50% < ceiling
        let spawn = SpawnState::new();

        // No demand yet → rule does not fire, regardless of headroom.
        assert_eq!(
            h.replication_decision(&healthy, &spawn).unwrap_err(),
            "no unmet demand"
        );

        // Now: all busy with work waiting AND headroom → the rule fires.
        h.units[0].busy = true;
        h.units[1].busy = true;
        h.pending_goals = 1;
        assert!(h.replication_decision(&healthy, &spawn).is_ok());

        // Same demand, but host over the ceiling → refuse (never a target).
        let over = HostResources::from_parts(1000, 50, 0.0, 4); // 95% used
        let err = h.replication_decision(&over, &spawn).unwrap_err();
        assert!(err.contains("ceiling"), "expected ceiling refusal: {err}");

        // Demand + headroom but a pre-existing guard set → still refuse.
        let mut quarantined = SpawnState::new();
        quarantined.quarantine = true;
        let err = h.replication_decision(&healthy, &quarantined).unwrap_err();
        assert!(err.contains("quarantine"), "expected quarantine: {err}");
    }

    #[test]
    fn no_work_path_invokes_evolve() {
        let mut h = MultiUnitHost::new(3);
        h.spawn_n(2);
        // A fresh unit has no evolution state.
        assert!(h.units[0].vm.evolution.is_none());
        // The no-work fall-through routes an idle unit into GP-EVOLVE...
        let idx = h.evolve_one_unworked().expect("an idle unit exists");
        // ...which initializes evolution state — proof the path ran evolve.
        assert!(h.units[idx].vm.evolution.is_some());
        assert!(!h.units[idx].busy, "unit released after evolving");
    }

    #[test]
    fn no_work_path_returns_none_when_all_busy() {
        let mut h = MultiUnitHost::new(2);
        h.spawn_n(2);
        h.units[0].busy = true;
        h.units[1].busy = true;
        // Nothing idle to put to work.
        assert_eq!(h.evolve_one_unworked(), None);
    }
}