batty-cli 0.11.63

Supervised agent execution for software teams
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
//! Core merge and worktree-reset operations.
//!
//! `merge_engineer_branch` rebases an engineer's worktree branch onto trunk and
//! fast-forward merges it. `reset_engineer_worktree` returns the worktree to
//! the engineer's base branch after a successful merge.

use std::collections::BTreeSet;
use std::path::Path;

use anyhow::{Context, Result, bail};
use tracing::{info, warn};

use crate::team::task_loop::{
    ADDITIVE_CONFLICT_AUTO_RESOLVE_FENCE, branch_is_merged_into,
    checkout_worktree_branch_from_trunk, current_worktree_branch, delete_branch,
    engineer_base_branch_name, is_worktree_safe_to_mutate, merge_additive_only_text,
    worktree_has_user_changes,
};
use crate::team::verification::{self, VerifyStatus};

use super::git_ops::{describe_git_failure, force_clean_worktree, run_git_with_context};
use super::lock::{MergeMode, MergeOutcome, MergeSuccess};

#[derive(Debug, Clone, PartialEq, Eq)]
struct RootMergePlan {
    mode: MergeMode,
    reason: Option<String>,
}

#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub(crate) struct RootDirtyState {
    pub(crate) staged_paths: Vec<String>,
    pub(crate) unstaged_paths: Vec<String>,
    pub(crate) runtime_paths: Vec<String>,
    pub(crate) source_paths: Vec<String>,
}

impl RootDirtyState {
    pub(crate) fn is_clean(&self) -> bool {
        self.runtime_paths.is_empty() && self.source_paths.is_empty()
    }

    pub(crate) fn is_runtime_only(&self) -> bool {
        !self.is_clean() && self.source_paths.is_empty()
    }
}

pub(crate) fn inspect_root_dirty_state(project_root: &Path) -> Result<RootDirtyState> {
    let staged_paths = git_name_only(project_root, &["diff", "--cached", "--name-only"])?;
    let mut unstaged_paths = git_name_only(project_root, &["diff", "--name-only"])?;
    unstaged_paths.extend(git_name_only(
        project_root,
        &["ls-files", "--others", "--exclude-standard"],
    )?);
    unstaged_paths.sort();
    unstaged_paths.dedup();

    let all_paths = staged_paths
        .iter()
        .chain(unstaged_paths.iter())
        .cloned()
        .collect::<BTreeSet<_>>();
    let mut runtime_paths = Vec::new();
    let mut source_paths = Vec::new();
    for path in all_paths {
        if is_batty_managed_runtime_path(&path) {
            runtime_paths.push(path);
        } else {
            source_paths.push(path);
        }
    }

    Ok(RootDirtyState {
        staged_paths,
        unstaged_paths,
        runtime_paths,
        source_paths,
    })
}

fn git_name_only(project_root: &Path, args: &[&str]) -> Result<Vec<String>> {
    let output = run_git_with_context(
        project_root,
        args,
        &format!("inspect root dirty paths with git {}", args.join(" ")),
    )?;
    if !output.status.success() {
        let stderr = String::from_utf8_lossy(&output.stderr).trim().to_string();
        bail!(
            "{}",
            describe_git_failure(
                project_root,
                args,
                &format!("inspect root dirty paths with git {}", args.join(" ")),
                &stderr,
            )
        );
    }
    Ok(String::from_utf8_lossy(&output.stdout)
        .lines()
        .map(str::trim)
        .filter(|line| !line.is_empty())
        .map(ToOwned::to_owned)
        .collect())
}

fn is_batty_managed_runtime_path(path: &str) -> bool {
    path == ".batty/team_config/board/.lock"
        || path == ".batty/team_config/board/activity.jsonl"
        || path == ".batty/events.jsonl"
        || path == ".batty/telemetry.db"
        || path == ".batty/telemetry.db-shm"
        || path == ".batty/telemetry.db-wal"
        || path == ".omx/notepad.md"
        || path == ".omx/project-memory.json"
        || path.starts_with(".batty/")
        || path.starts_with(".batty-target/")
        || path.starts_with(".omx/logs/")
        || path.starts_with(".omx/state/")
        || path.starts_with("target/")
}

pub(crate) fn merge_engineer_branch(
    project_root: &Path,
    engineer_name: &str,
) -> Result<MergeOutcome> {
    merge_engineer_branch_into_trunk(project_root, engineer_name, "main")
}

pub(crate) fn merge_engineer_branch_into_trunk(
    project_root: &Path,
    engineer_name: &str,
    trunk_branch: &str,
) -> Result<MergeOutcome> {
    let worktree_dir = project_root
        .join(".batty")
        .join("worktrees")
        .join(engineer_name);

    if !worktree_dir.exists() {
        bail!(
            "no worktree found for '{}' at {}",
            engineer_name,
            worktree_dir.display()
        );
    }

    let branch = current_worktree_branch(&worktree_dir)?;
    info!(engineer = engineer_name, branch = %branch, "merging worktree branch");

    // Fetch latest trunk into the worktree so rebase sees current state.
    let _ = run_git_with_context(
        &worktree_dir,
        &["fetch", ".", &format!("{trunk_branch}:{trunk_branch}")],
        &format!("fetch {trunk_branch} into worktree before rebase"),
    );

    let rebase = run_git_with_context(
        &worktree_dir,
        &["rebase", trunk_branch],
        &format!(
            "rebase engineer branch '{branch}' onto {trunk_branch} before merging for '{engineer_name}'"
        ),
    )?;

    if !rebase.status.success() {
        // Try to auto-resolve: for auto-generated files (.cargo/config.toml),
        // accept the main version and continue the rebase.
        let resolved = try_auto_resolve_rebase(&worktree_dir);
        if !resolved {
            let stderr = String::from_utf8_lossy(&rebase.stderr).trim().to_string();
            let _ = run_git_with_context(
                &worktree_dir,
                &["rebase", "--abort"],
                &format!("abort rebase for engineer branch '{branch}' after conflict"),
            );
            warn!(engineer = engineer_name, branch = %branch, "rebase conflict during merge");
            return Ok(MergeOutcome::RebaseConflict(describe_git_failure(
                &worktree_dir,
                &["rebase", trunk_branch],
                &format!(
                    "rebase engineer branch '{branch}' onto {trunk_branch} before merging for '{engineer_name}'"
                ),
                &stderr,
            )));
        }
        info!(engineer = engineer_name, branch = %branch, "auto-resolved rebase conflicts");
    }

    let verification =
        verification::verify_project(&worktree_dir, project_root).with_context(|| {
            format!("run verification before merging branch '{branch}' for '{engineer_name}'")
        })?;
    if verification.status == VerifyStatus::Failed {
        let regressions = if verification.regressions.is_empty() {
            "unknown".to_string()
        } else {
            verification.regressions.join(", ")
        };
        let report_path = verification
            .report_path
            .as_deref()
            .map(|path| path.display().to_string())
            .unwrap_or_else(|| "(none)".to_string());
        return Ok(MergeOutcome::MergeFailure(format!(
            "verification detected regressions for behavior(s): {regressions}. Report: {report_path}"
        )));
    }

    let merge_plan = plan_root_merge(project_root, trunk_branch).with_context(|| {
        format!("determine merge strategy for engineer branch '{branch}' from '{engineer_name}'")
    })?;
    let merge_result = match merge_plan.mode {
        MergeMode::DirectRoot => {
            merge_branch_into_root_trunk(project_root, engineer_name, &branch, trunk_branch)
        }
        MergeMode::IsolatedIntegration => merge_branch_via_isolated_integration(
            project_root,
            engineer_name,
            &branch,
            trunk_branch,
        ),
    };
    if let Err(error) = merge_result {
        let prefix = match merge_plan.mode {
            MergeMode::DirectRoot => "direct merge path failed",
            MergeMode::IsolatedIntegration => "isolated merge path failed",
        };
        let reason = merge_plan
            .reason
            .as_deref()
            .map(|reason| format!("{prefix}: {reason}: {error}"))
            .unwrap_or_else(|| format!("{prefix}: {error}"));
        warn!(
            engineer = engineer_name,
            branch = %branch,
            mode = ?merge_plan.mode,
            error = %reason,
            "merge execution failed"
        );
        return Ok(MergeOutcome::MergeFailure(reason));
    }

    println!("Merged branch '{branch}' from {engineer_name}");

    if let Err(error) = reset_engineer_worktree_to_trunk(project_root, engineer_name, trunk_branch)
    {
        warn!(
            engineer = engineer_name,
            error = %error,
            "worktree reset failed after merge"
        );
    }

    Ok(MergeOutcome::Success(MergeSuccess {
        mode: merge_plan.mode,
        reason: merge_plan.reason,
    }))
}

fn plan_root_merge(project_root: &Path, trunk_branch: &str) -> Result<RootMergePlan> {
    let branch = current_worktree_branch(project_root).unwrap_or_else(|_| "HEAD".to_string());
    if branch == trunk_branch {
        let root_dirty = inspect_root_dirty_state(project_root)?;
        if root_dirty.is_runtime_only() {
            return Ok(RootMergePlan {
                mode: MergeMode::DirectRoot,
                reason: Some(format!(
                    "root {trunk_branch} checkout has runtime-only local changes"
                )),
            });
        }
        if root_dirty.is_clean() {
            return Ok(RootMergePlan {
                mode: MergeMode::DirectRoot,
                reason: None,
            });
        }
    }

    let has_user_changes = worktree_has_user_changes(project_root)?;
    let reason = match (branch.as_str(), has_user_changes) {
        (branch, true) if branch == trunk_branch => {
            format!("root {trunk_branch} checkout has local changes")
        }
        ("HEAD", true) => "root checkout is detached HEAD with local changes".to_string(),
        ("HEAD", false) => "root checkout is detached HEAD".to_string(),
        (other, true) => format!("root checkout is on '{other}' with local changes"),
        (other, false) => format!("root checkout is on '{other}' instead of '{trunk_branch}'"),
    };
    Ok(RootMergePlan {
        mode: MergeMode::IsolatedIntegration,
        reason: Some(reason),
    })
}

fn merge_branch_into_root_trunk(
    project_root: &Path,
    engineer_name: &str,
    branch: &str,
    trunk_branch: &str,
) -> Result<()> {
    let output = run_git_with_context(
        project_root,
        &["merge", branch, "--no-edit"],
        &format!("merge engineer branch '{branch}' from '{engineer_name}' into {trunk_branch}"),
    )?;
    if !output.status.success() {
        let stderr = String::from_utf8_lossy(&output.stderr).trim().to_string();
        bail!(
            "{}",
            describe_git_failure(
                project_root,
                &["merge", branch, "--no-edit"],
                &format!(
                    "merge engineer branch '{branch}' from '{engineer_name}' into {trunk_branch}"
                ),
                &stderr,
            )
        );
    }
    Ok(())
}

fn merge_branch_via_isolated_integration(
    project_root: &Path,
    engineer_name: &str,
    branch: &str,
    trunk_branch: &str,
) -> Result<()> {
    let trunk_before = run_git_with_context(
        project_root,
        &["rev-parse", &format!("refs/heads/{trunk_branch}")],
        &format!("capture {trunk_branch} ref before isolated merge"),
    )?;
    if !trunk_before.status.success() {
        bail!(
            "failed to read {trunk_branch} ref before isolated merge: {}",
            String::from_utf8_lossy(&trunk_before.stderr).trim()
        );
    }
    let trunk_before = String::from_utf8_lossy(&trunk_before.stdout)
        .trim()
        .to_string();
    let integration =
        crate::worktree::prepare_integration_worktree(project_root, "merge-main-", trunk_branch)?;
    let merge = run_git_with_context(
        integration.path(),
        &["merge", branch, "--no-edit"],
        &format!(
            "merge engineer branch '{branch}' from '{engineer_name}' in isolated integration worktree"
        ),
    )?;
    if !merge.status.success() {
        let stderr = String::from_utf8_lossy(&merge.stderr).trim().to_string();
        bail!(
            "{}",
            describe_git_failure(
                integration.path(),
                &["merge", branch, "--no-edit"],
                &format!(
                    "merge engineer branch '{branch}' from '{engineer_name}' in isolated integration worktree"
                ),
                &stderr,
            )
        );
    }

    let integration_head = run_git_with_context(
        integration.path(),
        &["rev-parse", "HEAD"],
        "capture isolated integration merge head",
    )?;
    if !integration_head.status.success() {
        bail!(
            "failed to read isolated integration merge head: {}",
            String::from_utf8_lossy(&integration_head.stderr).trim()
        );
    }
    let integration_head = String::from_utf8_lossy(&integration_head.stdout)
        .trim()
        .to_string();
    let advance_trunk = run_git_with_context(
        project_root,
        &[
            "update-ref",
            &format!("refs/heads/{trunk_branch}"),
            integration_head.as_str(),
            trunk_before.as_str(),
        ],
        &format!("advance {trunk_branch} ref after isolated merge"),
    )?;
    if !advance_trunk.status.success() {
        bail!(
            "failed to advance {trunk_branch} after isolated merge: {}",
            String::from_utf8_lossy(&advance_trunk.stderr).trim()
        );
    }
    Ok(())
}

/// Try to auto-resolve rebase conflicts for files that batty manages.
/// Returns true if all conflicts were resolved and the rebase completed.
fn try_auto_resolve_rebase(worktree_dir: &Path) -> bool {
    // List conflicted files
    let status = match run_git_with_context(
        worktree_dir,
        &["diff", "--name-only", "--diff-filter=U"],
        "list rebase conflicts",
    ) {
        Ok(out) => out,
        Err(_) => return false,
    };
    let raw = String::from_utf8_lossy(&status.stdout).trim().to_string();
    let conflicts: Vec<&str> = raw.lines().collect();

    if conflicts.is_empty() {
        return false;
    }

    // Auto-resolvable patterns: batty-managed configs and generated files
    let auto_resolvable = |path: &str| -> bool {
        path == ".cargo/config.toml"
            || path.ends_with(".cargo/config.toml")
            || path.starts_with("src/team/templates/batty_")
    };

    for conflict in &conflicts {
        if auto_resolvable(conflict) {
            // Accept main's version for managed files
            let _ = run_git_with_context(
                worktree_dir,
                &["checkout", "--theirs", conflict],
                &format!("auto-resolve conflict in {conflict} (accept main)"),
            );
            let _ = run_git_with_context(
                worktree_dir,
                &["add", conflict],
                &format!("stage auto-resolved {conflict}"),
            );
        } else if try_auto_resolve_additive_conflict(worktree_dir, conflict) {
            info!(
                file = conflict,
                "auto-resolved additive-only rebase conflict"
            );
        } else {
            // Non-auto-resolvable conflict — bail
            info!(
                file = conflict,
                "rebase conflict in non-managed file, cannot auto-resolve"
            );
            return false;
        }
    }

    // Continue the rebase — may need multiple rounds if there are stacked conflicts
    for _ in 0..20 {
        let cont = run_git_with_context(
            worktree_dir,
            &["rebase", "--continue"],
            "continue rebase after auto-resolve",
        );
        match cont {
            Ok(output) if output.status.success() => return true,
            Ok(_) => {
                // Another conflict — try to auto-resolve again
                let status = run_git_with_context(
                    worktree_dir,
                    &["diff", "--name-only", "--diff-filter=U"],
                    "list remaining rebase conflicts",
                );
                let remaining: Vec<String> = match status {
                    Ok(out) => String::from_utf8_lossy(&out.stdout)
                        .trim()
                        .lines()
                        .map(String::from)
                        .collect(),
                    Err(_) => return false,
                };
                if remaining.is_empty() {
                    continue; // no conflicts, just needs --continue again
                }
                for r in &remaining {
                    if auto_resolvable(r) {
                        let _ = run_git_with_context(
                            worktree_dir,
                            &["checkout", "--theirs", r],
                            &format!("auto-resolve {r}"),
                        );
                        let _ =
                            run_git_with_context(worktree_dir, &["add", r], &format!("stage {r}"));
                    } else if try_auto_resolve_additive_conflict(worktree_dir, r) {
                        info!(file = r, "auto-resolved additive-only rebase conflict");
                    } else {
                        return false;
                    }
                }
            }
            Err(_) => return false,
        }
    }
    false
}

fn try_auto_resolve_additive_conflict(worktree_dir: &Path, path: &str) -> bool {
    if !ADDITIVE_CONFLICT_AUTO_RESOLVE_FENCE.contains(&path) {
        return false;
    }

    let Some(base) = read_conflict_stage(worktree_dir, 1, path) else {
        return false;
    };
    let Some(current) = read_conflict_stage(worktree_dir, 2, path) else {
        return false;
    };
    let Some(incoming) = read_conflict_stage(worktree_dir, 3, path) else {
        return false;
    };

    let Some(merged) = merge_additive_only_text(&base, &current, &incoming) else {
        return false;
    };

    std::fs::write(worktree_dir.join(path), merged).is_ok()
        && run_git_with_context(
            worktree_dir,
            &["add", path],
            &format!("stage additive-only conflict resolution for {path}"),
        )
        .is_ok_and(|output| output.status.success())
}

fn read_conflict_stage(worktree_dir: &Path, stage: u8, path: &str) -> Option<String> {
    let stage_spec = format!(":{stage}:{path}");
    let output = run_git_with_context(
        worktree_dir,
        &["show", stage_spec.as_str()],
        &format!("read stage {stage} for conflicted path {path}"),
    )
    .ok()?;
    if !output.status.success() || output.stdout.contains(&0) {
        return None;
    }
    String::from_utf8(output.stdout).ok()
}

#[cfg_attr(not(test), allow(dead_code))]
pub(crate) fn reset_engineer_worktree(project_root: &Path, engineer_name: &str) -> Result<()> {
    reset_engineer_worktree_to_trunk(project_root, engineer_name, "main")
}

pub(crate) fn reset_engineer_worktree_to_trunk(
    project_root: &Path,
    engineer_name: &str,
    trunk_branch: &str,
) -> Result<()> {
    let worktree_dir = project_root
        .join(".batty")
        .join("worktrees")
        .join(engineer_name);

    if !worktree_dir.exists() {
        return Ok(());
    }

    let previous_branch = current_worktree_branch(&worktree_dir)?;
    let base_branch = engineer_base_branch_name(engineer_name);

    // Guard: refuse to destroy uncommitted work on a task branch.
    if !is_worktree_safe_to_mutate(&worktree_dir)? {
        warn!(
            engineer = engineer_name,
            worktree = %worktree_dir.display(),
            "skipping worktree reset — uncommitted changes on task branch"
        );
        return Ok(());
    }

    // Force-clean uncommitted changes before switching branches.
    // Without this, `checkout -B` fails when the worktree is dirty.
    force_clean_worktree(&worktree_dir, engineer_name);

    if let Err(error) =
        checkout_worktree_branch_from_trunk(&worktree_dir, &base_branch, trunk_branch)
    {
        warn!(
            engineer = engineer_name,
            current_branch = %previous_branch,
            expected_branch = %base_branch,
            error = %error,
            "failed to reset worktree after merge"
        );
        return Ok(());
    }

    // Verify HEAD landed on the base branch.
    match current_worktree_branch(&worktree_dir) {
        Ok(actual) if actual == base_branch => {}
        Ok(actual) => {
            warn!(
                engineer = engineer_name,
                current_branch = %actual,
                expected_branch = %base_branch,
                "worktree reset did not land on expected branch"
            );
        }
        Err(error) => {
            warn!(
                engineer = engineer_name,
                error = %error,
                "could not verify worktree branch after reset"
            );
        }
    }

    if previous_branch != base_branch
        && previous_branch != "HEAD"
        && (previous_branch == engineer_name
            || previous_branch.starts_with(&format!("{engineer_name}/")))
        && branch_is_merged_into(project_root, &previous_branch, trunk_branch)?
        && let Err(error) = delete_branch(project_root, &previous_branch)
    {
        warn!(
            engineer = engineer_name,
            branch = %previous_branch,
            error = %error,
            "failed to delete merged engineer task branch"
        );
    }

    info!(
        engineer = engineer_name,
        branch = %base_branch,
        worktree = %worktree_dir.display(),
        "reset worktree to trunk after merge"
    );
    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::team::task_loop::{
        engineer_base_branch_name, prepare_engineer_assignment_worktree, setup_engineer_worktree,
    };
    use crate::team::test_support::{git, git_ok, git_stdout, init_git_repo};
    use std::os::unix::fs::PermissionsExt;
    use std::path::PathBuf;

    fn engineer_worktree_paths(repo: &Path, engineer: &str) -> (PathBuf, PathBuf) {
        let worktree_dir = repo.join(".batty").join("worktrees").join(engineer);
        let team_config_dir = repo.join(".batty").join("team_config");
        (worktree_dir, team_config_dir)
    }

    fn write_script(path: &Path, lines: &[&str]) {
        let body = format!("#!/bin/sh\nprintf '%s\\n' {}\n", lines.join(" "));
        std::fs::write(path, body).unwrap();
        let mut perms = std::fs::metadata(path).unwrap().permissions();
        perms.set_mode(0o755);
        std::fs::set_permissions(path, perms).unwrap();
    }

    #[test]
    fn merge_rejects_missing_worktree() {
        let tmp = tempfile::tempdir().unwrap();
        let err = merge_engineer_branch(tmp.path(), "eng-1-1").unwrap_err();
        assert!(err.to_string().contains("no worktree found"));
    }

    #[test]
    fn root_dirty_state_blocks_staged_source_edits() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "root-dirty-staged");
        std::fs::write(repo.join("src").join("lib.rs"), "pub fn changed() {}\n").unwrap();
        git_ok(&repo, &["add", "src/lib.rs"]);

        let state = inspect_root_dirty_state(&repo).unwrap();

        assert_eq!(state.staged_paths, vec!["src/lib.rs"]);
        assert_eq!(state.source_paths, vec!["src/lib.rs"]);
        assert!(state.runtime_paths.is_empty());
    }

    #[test]
    fn root_dirty_state_blocks_unstaged_source_edits() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "root-dirty-unstaged");
        std::fs::write(repo.join("src").join("lib.rs"), "pub fn changed() {}\n").unwrap();

        let state = inspect_root_dirty_state(&repo).unwrap();

        assert_eq!(state.unstaged_paths, vec!["src/lib.rs"]);
        assert_eq!(state.source_paths, vec!["src/lib.rs"]);
        assert!(state.runtime_paths.is_empty());
    }

    #[test]
    fn root_dirty_state_separates_mixed_source_and_runtime_paths() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "root-dirty-mixed");
        std::fs::write(repo.join("src").join("lib.rs"), "pub fn changed() {}\n").unwrap();
        git_ok(&repo, &["add", "src/lib.rs"]);
        std::fs::create_dir_all(repo.join("docs")).unwrap();
        std::fs::write(repo.join("docs").join("recovery.md"), "manual recovery\n").unwrap();
        let runtime_dir = repo.join(".batty").join("team_config").join("board");
        std::fs::create_dir_all(&runtime_dir).unwrap();
        std::fs::write(runtime_dir.join("activity.jsonl"), "{\"event\":\"tick\"}\n").unwrap();

        let state = inspect_root_dirty_state(&repo).unwrap();

        assert_eq!(state.staged_paths, vec!["src/lib.rs"]);
        assert_eq!(
            state.unstaged_paths,
            vec![
                ".batty/team_config/board/activity.jsonl",
                "docs/recovery.md"
            ]
        );
        assert_eq!(state.source_paths, vec!["docs/recovery.md", "src/lib.rs"]);
        assert_eq!(
            state.runtime_paths,
            vec![".batty/team_config/board/activity.jsonl"]
        );
    }

    #[test]
    fn root_dirty_state_allows_runtime_only_noise() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "root-dirty-runtime");
        let activity = repo.join(".batty").join("team_config").join("board");
        std::fs::create_dir_all(&activity).unwrap();
        std::fs::write(activity.join("activity.jsonl"), "{\"event\":\"tick\"}\n").unwrap();

        let state = inspect_root_dirty_state(&repo).unwrap();

        assert!(state.is_runtime_only());
        assert_eq!(
            state.runtime_paths,
            vec![".batty/team_config/board/activity.jsonl"]
        );
        assert!(state.source_paths.is_empty());
    }

    #[test]
    fn merge_with_rebase_picks_up_main() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let worktree_dir = repo.join(".batty").join("worktrees").join("eng-1");
        let team_config_dir = repo.join(".batty").join("team_config");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-1", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "engineer work\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer feature"]);

        std::fs::write(repo.join("other.txt"), "main work\n").unwrap();
        git_ok(&repo, &["add", "other.txt"]);
        git_ok(&repo, &["commit", "-m", "main advance"]);

        let result = merge_engineer_branch(&repo, "eng-1").unwrap();
        assert!(matches!(
            result,
            MergeOutcome::Success(MergeSuccess {
                mode: MergeMode::DirectRoot,
                ..
            })
        ));
        assert!(repo.join("feature.txt").exists());
        assert!(repo.join("other.txt").exists());
    }

    #[test]
    fn merge_blocks_when_verification_detects_regression() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        std::fs::create_dir_all(repo.join(".batty")).unwrap();
        std::fs::create_dir_all(repo.join("scripts")).unwrap();
        std::fs::write(
            repo.join("PARITY.md"),
            r#"---
project: trivial
target: trivial.z80
source_platform: zx-spectrum-z80
target_language: rust
last_verified: 2026-04-05
overall_parity: 100%
---

| Behavior | Spec | Test | Implementation | Verified | Notes |
| --- | --- | --- | --- | --- | --- |
| Screen fill | complete | complete | complete | PASS | previous |
"#,
        )
        .unwrap();
        std::fs::write(
            repo.join(".batty/verification.yml"),
            r#"behaviors:
  - behavior: Screen fill
    baseline: scripts/baseline.sh
    candidate: scripts/candidate.sh
    inputs: []
"#,
        )
        .unwrap();
        write_script(&repo.join("scripts/baseline.sh"), &["frame-a", "frame-b"]);
        write_script(&repo.join("scripts/candidate.sh"), &["frame-a", "frame-b"]);
        git_ok(
            &repo,
            &["add", "PARITY.md", ".batty/verification.yml", "scripts"],
        );
        git_ok(&repo, &["commit", "-m", "add verification fixtures"]);

        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-verify");
        setup_engineer_worktree(&repo, &worktree_dir, "eng-verify", &team_config_dir).unwrap();

        write_script(
            &worktree_dir.join("scripts/candidate.sh"),
            &["frame-a", "frame-x"],
        );
        git_ok(&worktree_dir, &["add", "scripts/candidate.sh"]);
        git_ok(&worktree_dir, &["commit", "-m", "introduce regression"]);

        let result = merge_engineer_branch(&repo, "eng-verify").unwrap();
        match result {
            MergeOutcome::MergeFailure(message) => {
                assert!(message.contains("verification detected regressions"));
                assert!(message.contains("Screen fill"));
            }
            other => panic!("expected verification failure, got {other:?}"),
        }
        assert_eq!(
            git_stdout(&repo, &["rev-parse", "--abbrev-ref", "HEAD"]),
            "main"
        );
        assert_eq!(
            git_stdout(&repo, &["show", "main:scripts/candidate.sh"]),
            "#!/bin/sh\nprintf '%s\\n' frame-a frame-b"
        );
    }

    #[test]
    fn reset_worktree_after_merge() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let worktree_dir = repo.join(".batty").join("worktrees").join("eng-1");
        let team_config_dir = repo.join(".batty").join("team_config");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-1", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "work\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer work"]);

        let result = merge_engineer_branch(&repo, "eng-1").unwrap();
        assert!(matches!(result, MergeOutcome::Success(_)));

        let main_head = git_stdout(&repo, &["rev-parse", "HEAD"]);
        let worktree_head = git_stdout(&worktree_dir, &["rev-parse", "HEAD"]);
        assert_eq!(main_head, worktree_head);
    }

    #[test]
    fn merge_empty_diff_returns_success() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-empty");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-empty", &team_config_dir).unwrap();
        let main_before = git_stdout(&repo, &["rev-parse", "main"]);

        let result = merge_engineer_branch(&repo, "eng-empty").unwrap();

        assert!(matches!(result, MergeOutcome::Success(_)));
        assert_eq!(git_stdout(&repo, &["rev-parse", "main"]), main_before);
    }

    #[test]
    fn merge_empty_diff_resets_worktree_to_engineer_base_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-empty");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-empty", &team_config_dir).unwrap();

        let result = merge_engineer_branch(&repo, "eng-empty").unwrap();

        assert!(matches!(result, MergeOutcome::Success(_)));
        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            engineer_base_branch_name("eng-empty")
        );
    }

    #[test]
    fn merge_with_two_main_advances_rebases_cleanly() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-stale");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-stale", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "engineer work\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer feature"]);

        std::fs::write(repo.join("main-one.txt"), "main one\n").unwrap();
        git_ok(&repo, &["add", "main-one.txt"]);
        git_ok(&repo, &["commit", "-m", "main advance 1"]);

        std::fs::write(repo.join("main-two.txt"), "main two\n").unwrap();
        git_ok(&repo, &["add", "main-two.txt"]);
        git_ok(&repo, &["commit", "-m", "main advance 2"]);

        let result = merge_engineer_branch(&repo, "eng-stale").unwrap();

        assert!(matches!(result, MergeOutcome::Success(_)));
        assert!(repo.join("feature.txt").exists());
        assert!(repo.join("main-one.txt").exists());
        assert!(repo.join("main-two.txt").exists());
    }

    #[test]
    fn reset_worktree_restores_engineer_base_branch_after_task_merge() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let worktree_dir = repo.join(".batty").join("worktrees").join("eng-1");
        let team_config_dir = repo.join(".batty").join("team_config");

        prepare_engineer_assignment_worktree(
            &repo,
            &worktree_dir,
            "eng-1",
            "eng-1/42",
            &team_config_dir,
        )
        .unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "work\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer work"]);

        let result = merge_engineer_branch(&repo, "eng-1").unwrap();
        assert!(matches!(result, MergeOutcome::Success(_)));
        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            engineer_base_branch_name("eng-1")
        );

        let branch_check = git(&repo, &["rev-parse", "--verify", "eng-1/42"]);
        assert!(
            !branch_check.status.success(),
            "merged task branch should be deleted"
        );
    }

    #[test]
    fn reset_worktree_leaves_clean_state() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let worktree_dir = repo.join(".batty").join("worktrees").join("eng-1");
        let team_config_dir = repo.join(".batty").join("team_config");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-1", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("new.txt"), "content\n").unwrap();
        git_ok(&worktree_dir, &["add", "new.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "add file"]);

        let result = merge_engineer_branch(&repo, "eng-1").unwrap();
        assert!(matches!(result, MergeOutcome::Success(_)));

        let status = git_stdout(&worktree_dir, &["status", "--porcelain"]);
        let tracked_changes: Vec<&str> = status
            .lines()
            .filter(|line| !line.starts_with("?? .batty/") && !line.starts_with("?? .cargo/"))
            .collect();
        assert!(
            tracked_changes.is_empty(),
            "worktree has tracked changes: {:?}",
            tracked_changes
        );
    }

    #[test]
    fn reset_worktree_noops_when_worktree_is_missing() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");

        reset_engineer_worktree(&repo, "eng-missing").unwrap();
    }

    #[test]
    fn reset_worktree_keeps_unmerged_task_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-keep");

        prepare_engineer_assignment_worktree(
            &repo,
            &worktree_dir,
            "eng-keep",
            "eng-keep/77",
            &team_config_dir,
        )
        .unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "keep me\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "unmerged feature"]);

        reset_engineer_worktree(&repo, "eng-keep").unwrap();

        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            engineer_base_branch_name("eng-keep")
        );
        assert!(
            git(&repo, &["rev-parse", "--verify", "eng-keep/77"])
                .status
                .success()
        );
    }

    #[test]
    fn reset_worktree_deletes_merged_legacy_task_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-legacy");

        setup_engineer_worktree(
            &repo,
            &worktree_dir,
            &engineer_base_branch_name("eng-legacy"),
            &team_config_dir,
        )
        .unwrap();
        git_ok(
            &worktree_dir,
            &["checkout", "-B", "eng-legacy/task-55", "main"],
        );
        std::fs::write(worktree_dir.join("legacy.txt"), "legacy branch work\n").unwrap();
        git_ok(&worktree_dir, &["add", "legacy.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "legacy task work"]);
        git_ok(&repo, &["merge", "eng-legacy/task-55", "--no-edit"]);

        reset_engineer_worktree(&repo, "eng-legacy").unwrap();

        assert!(
            !git(&repo, &["rev-parse", "--verify", "eng-legacy/task-55"])
                .status
                .success()
        );
        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            engineer_base_branch_name("eng-legacy")
        );
    }

    #[test]
    fn reset_worktree_keeps_non_engineer_namespace_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-keep");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-keep", &team_config_dir).unwrap();
        git_ok(&worktree_dir, &["checkout", "-B", "feature/custom", "main"]);
        std::fs::write(worktree_dir.join("feature.txt"), "non engineer branch\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "feature branch work"]);

        reset_engineer_worktree(&repo, "eng-keep").unwrap();

        assert!(
            git(&repo, &["rev-parse", "--verify", "feature/custom"])
                .status
                .success()
        );
    }

    #[test]
    fn merge_success_deletes_merged_engineer_branch_namespace() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-delete");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-delete", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "remove branch\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer work"]);

        let result = merge_engineer_branch(&repo, "eng-delete").unwrap();

        assert!(matches!(result, MergeOutcome::Success(_)));
        assert!(
            !git(&repo, &["rev-parse", "--verify", "eng-delete"])
                .status
                .success()
        );
    }

    #[test]
    fn merge_rebase_conflict_returns_conflict() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let worktree_dir = repo.join(".batty").join("worktrees").join("eng-2");
        let team_config_dir = repo.join(".batty").join("team_config");

        std::fs::write(repo.join("conflict.txt"), "original\n").unwrap();
        git_ok(&repo, &["add", "conflict.txt"]);
        git_ok(&repo, &["commit", "-m", "add conflict file"]);

        setup_engineer_worktree(&repo, &worktree_dir, "eng-2", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("conflict.txt"), "engineer version\n").unwrap();
        git_ok(&worktree_dir, &["add", "conflict.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer change"]);

        std::fs::write(repo.join("conflict.txt"), "main version\n").unwrap();
        git_ok(&repo, &["add", "conflict.txt"]);
        git_ok(&repo, &["commit", "-m", "main change"]);

        let result = merge_engineer_branch(&repo, "eng-2").unwrap();
        assert!(matches!(result, MergeOutcome::RebaseConflict(_)));

        let status = git(&worktree_dir, &["status", "--porcelain"]);
        assert!(status.status.success());
    }

    #[test]
    fn merge_rebase_additive_conflict_keeps_both_sides() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-2");
        let review_file = repo.join("src").join("team").join("review.rs");

        std::fs::create_dir_all(review_file.parent().unwrap()).unwrap();
        std::fs::write(
            &review_file,
            "const REVIEW_CHECKS: &[&str] = &[\n    \"existing\",\n];\n",
        )
        .unwrap();
        git_ok(&repo, &["add", "src/team/review.rs"]);
        git_ok(&repo, &["commit", "-m", "add review checks"]);

        setup_engineer_worktree(&repo, &worktree_dir, "eng-2", &team_config_dir).unwrap();

        std::fs::write(
            worktree_dir.join("src").join("team").join("review.rs"),
            "const REVIEW_CHECKS: &[&str] = &[\n    \"engineer\",\n    \"existing\",\n];\n",
        )
        .unwrap();
        git_ok(&worktree_dir, &["add", "src/team/review.rs"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer review addition"]);

        std::fs::write(
            &review_file,
            "const REVIEW_CHECKS: &[&str] = &[\n    \"main\",\n    \"existing\",\n];\n",
        )
        .unwrap();
        git_ok(&repo, &["add", "src/team/review.rs"]);
        git_ok(&repo, &["commit", "-m", "main review addition"]);

        let result = merge_engineer_branch(&repo, "eng-2").unwrap();

        assert!(matches!(result, MergeOutcome::Success(_)));
        let merged = std::fs::read_to_string(review_file).unwrap();
        assert!(merged.contains("\"main\""));
        assert!(merged.contains("\"engineer\""));
        assert!(merged.contains("\"existing\""));
    }

    fn setup_rebase_conflict_repo(
        engineer: &str,
    ) -> (tempfile::TempDir, PathBuf, PathBuf, PathBuf) {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, engineer);

        std::fs::write(repo.join("conflict.txt"), "original\n").unwrap();
        git_ok(&repo, &["add", "conflict.txt"]);
        git_ok(&repo, &["commit", "-m", "add conflict file"]);

        setup_engineer_worktree(&repo, &worktree_dir, engineer, &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("conflict.txt"), "engineer version\n").unwrap();
        git_ok(&worktree_dir, &["add", "conflict.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer change"]);

        std::fs::write(repo.join("conflict.txt"), "main version\n").unwrap();
        git_ok(&repo, &["add", "conflict.txt"]);
        git_ok(&repo, &["commit", "-m", "main change"]);

        (tmp, repo, worktree_dir, team_config_dir)
    }

    #[test]
    fn merge_rebase_conflict_aborts_rebase_state() {
        let (_tmp, repo, worktree_dir, _team_config_dir) = setup_rebase_conflict_repo("eng-4");

        let result = merge_engineer_branch(&repo, "eng-4").unwrap();

        assert!(matches!(result, MergeOutcome::RebaseConflict(_)));
        assert!(
            !git(&worktree_dir, &["rev-parse", "--verify", "REBASE_HEAD"])
                .status
                .success()
        );
    }

    #[test]
    fn merge_with_dirty_main_uses_isolated_integration_path() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let worktree_dir = repo.join(".batty").join("worktrees").join("eng-3");
        let team_config_dir = repo.join(".batty").join("team_config");

        std::fs::write(repo.join("journal.md"), "base\n").unwrap();
        git_ok(&repo, &["add", "journal.md"]);
        git_ok(&repo, &["commit", "-m", "add journal"]);

        setup_engineer_worktree(&repo, &worktree_dir, "eng-3", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "engineer version\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer update"]);

        std::fs::write(repo.join("journal.md"), "dirty main\n").unwrap();

        let result = merge_engineer_branch(&repo, "eng-3").unwrap();
        match result {
            MergeOutcome::Success(success) => {
                assert_eq!(success.mode, MergeMode::IsolatedIntegration);
                assert!(
                    success
                        .reason
                        .as_deref()
                        .is_some_and(|reason| reason.contains("local changes")),
                    "expected dirty-root isolation reason, got {success:?}"
                );
                assert_eq!(
                    git_stdout(&repo, &["show", "main:feature.txt"]),
                    "engineer version"
                );
                assert_eq!(
                    std::fs::read_to_string(repo.join("journal.md")).unwrap(),
                    "dirty main\n"
                );
            }
            other => panic!("expected isolated merge success, got {other:?}"),
        }
    }

    #[test]
    fn merge_with_runtime_only_dirty_main_uses_direct_root_path() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let worktree_dir = repo.join(".batty").join("worktrees").join("eng-runtime");
        let team_config_dir = repo.join(".batty").join("team_config");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-runtime", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "engineer version\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer update"]);

        let activity_dir = repo.join(".batty").join("team_config").join("board");
        std::fs::create_dir_all(&activity_dir).unwrap();
        std::fs::write(
            activity_dir.join("activity.jsonl"),
            "{\"event\":\"tick\"}\n",
        )
        .unwrap();

        let result = merge_engineer_branch(&repo, "eng-runtime").unwrap();
        match result {
            MergeOutcome::Success(success) => {
                assert_eq!(success.mode, MergeMode::DirectRoot);
                assert!(
                    success
                        .reason
                        .as_deref()
                        .is_some_and(|reason| reason.contains("runtime-only local changes")),
                    "expected runtime-only direct-root reason, got {success:?}"
                );
                assert_eq!(
                    git_stdout(&repo, &["show", "main:feature.txt"]),
                    "engineer version"
                );
                assert_eq!(
                    std::fs::read_to_string(activity_dir.join("activity.jsonl")).unwrap(),
                    "{\"event\":\"tick\"}\n"
                );
            }
            other => panic!("expected direct merge success, got {other:?}"),
        }
    }

    #[test]
    fn merge_failure_retains_engineer_branch_for_manual_recovery() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-3");

        std::fs::write(repo.join("journal.md"), "base\n").unwrap();
        git_ok(&repo, &["add", "journal.md"]);
        git_ok(&repo, &["commit", "-m", "add journal"]);

        setup_engineer_worktree(&repo, &worktree_dir, "eng-3", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("journal.md"), "engineer version\n").unwrap();
        git_ok(&worktree_dir, &["add", "journal.md"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer update"]);

        std::fs::write(repo.join("journal.md"), "dirty main\n").unwrap();
        std::fs::create_dir_all(repo.join(".batty")).unwrap();
        std::fs::write(
            repo.join(".batty").join("integration-worktrees"),
            "not a directory\n",
        )
        .unwrap();

        let result = merge_engineer_branch(&repo, "eng-3").unwrap();

        assert!(matches!(result, MergeOutcome::MergeFailure(_)));
        assert_eq!(current_worktree_branch(&worktree_dir).unwrap(), "eng-3");
        assert!(
            git(&repo, &["rev-parse", "--verify", "eng-3"])
                .status
                .success()
        );
        assert_eq!(
            std::fs::read_to_string(repo.join("journal.md")).unwrap(),
            "dirty main\n"
        );
        assert!(
            !repo.join("feature.txt").exists(),
            "main ref should not advance when isolated merge preparation fails"
        );
    }

    #[test]
    fn reset_clears_task_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-reset");

        prepare_engineer_assignment_worktree(
            &repo,
            &worktree_dir,
            "eng-reset",
            "eng-reset/task-99",
            &team_config_dir,
        )
        .unwrap();

        std::fs::write(worktree_dir.join("done.txt"), "work done\n").unwrap();
        git_ok(&worktree_dir, &["add", "done.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "task work"]);

        // Merge the task branch into main so it's considered merged.
        git_ok(&repo, &["merge", "eng-reset/task-99", "--no-edit"]);

        reset_engineer_worktree(&repo, "eng-reset").unwrap();

        // Verify on base branch.
        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            engineer_base_branch_name("eng-reset")
        );
        // Verify task branch is deleted.
        assert!(
            !git(&repo, &["rev-parse", "--verify", "eng-reset/task-99"])
                .status
                .success(),
            "merged task branch should have been deleted"
        );
    }

    #[test]
    fn reset_handles_uncommitted_changes_on_base_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-dirty");
        let base = engineer_base_branch_name("eng-dirty");

        // Set up worktree on the base branch (not a task branch).
        setup_engineer_worktree(&repo, &worktree_dir, &base, &team_config_dir).unwrap();

        // Leave uncommitted staged and unstaged changes.
        std::fs::write(worktree_dir.join("staged.txt"), "staged\n").unwrap();
        git_ok(&worktree_dir, &["add", "staged.txt"]);
        std::fs::write(worktree_dir.join("unstaged.txt"), "unstaged\n").unwrap();

        // Reset should succeed — base branch is safe to mutate even when dirty.
        reset_engineer_worktree(&repo, "eng-dirty").unwrap();

        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            base
        );
        // Worktree should be clean after reset.
        let status = git_stdout(&worktree_dir, &["status", "--porcelain"]);
        let tracked_changes: Vec<&str> = status
            .lines()
            .filter(|line| !line.starts_with("?? .batty/") && !line.starts_with("?? .cargo/"))
            .collect();
        assert!(
            tracked_changes.is_empty(),
            "worktree should be clean after reset, got: {:?}",
            tracked_changes
        );
    }

    #[test]
    fn reset_skips_when_dirty_task_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-dirty-task");

        prepare_engineer_assignment_worktree(
            &repo,
            &worktree_dir,
            "eng-dirty-task",
            "eng-dirty-task/task-88",
            &team_config_dir,
        )
        .unwrap();

        // Leave uncommitted staged changes on a task branch.
        std::fs::write(worktree_dir.join("staged.txt"), "staged\n").unwrap();
        git_ok(&worktree_dir, &["add", "staged.txt"]);

        // Reset should skip — worktree is dirty on a task branch.
        reset_engineer_worktree(&repo, "eng-dirty-task").unwrap();

        // Worktree should remain on the task branch with changes intact.
        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            "eng-dirty-task/task-88"
        );
        assert!(worktree_dir.join("staged.txt").exists());
    }

    #[test]
    fn reset_handles_detached_head() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-detach");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-detach", &team_config_dir).unwrap();

        // Create a commit and detach HEAD.
        std::fs::write(worktree_dir.join("file.txt"), "content\n").unwrap();
        git_ok(&worktree_dir, &["add", "file.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "a commit"]);
        let commit_sha = git_stdout(&worktree_dir, &["rev-parse", "HEAD"]);
        git_ok(&worktree_dir, &["checkout", &commit_sha]);

        // Verify we are in detached HEAD state.
        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            "HEAD"
        );

        // Reset should still check out the base branch.
        reset_engineer_worktree(&repo, "eng-detach").unwrap();

        assert_eq!(
            git_stdout(&worktree_dir, &["rev-parse", "--abbrev-ref", "HEAD"]),
            engineer_base_branch_name("eng-detach")
        );
    }

    #[test]
    fn merge_fails_when_project_root_not_on_main() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-off");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-off", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "engineer work\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer feature"]);

        // Move project root off main onto a detached HEAD.
        git_ok(&repo, &["checkout", "--detach", "HEAD"]);

        let result = merge_engineer_branch(&repo, "eng-off").unwrap();
        match result {
            MergeOutcome::Success(success) => {
                assert_eq!(success.mode, MergeMode::IsolatedIntegration);
                assert!(
                    success
                        .reason
                        .as_deref()
                        .is_some_and(|reason| reason.contains("detached HEAD")),
                    "expected detached-head isolation reason, got {success:?}"
                );
                let branch = git_stdout(&repo, &["rev-parse", "--abbrev-ref", "HEAD"]);
                assert_eq!(branch, "HEAD");
            }
            other => panic!("expected isolated merge success, got {other:?}"),
        }
    }

    #[test]
    fn merge_succeeds_when_project_root_on_main() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-ok");

        setup_engineer_worktree(&repo, &worktree_dir, "eng-ok", &team_config_dir).unwrap();

        std::fs::write(worktree_dir.join("feature.txt"), "work\n").unwrap();
        git_ok(&worktree_dir, &["add", "feature.txt"]);
        git_ok(&worktree_dir, &["commit", "-m", "engineer work"]);

        assert_eq!(
            git_stdout(&repo, &["rev-parse", "--abbrev-ref", "HEAD"]),
            "main"
        );

        let result = merge_engineer_branch(&repo, "eng-ok").unwrap();
        assert!(matches!(
            result,
            MergeOutcome::Success(MergeSuccess {
                mode: MergeMode::DirectRoot,
                ..
            })
        ));
        assert!(repo.join("feature.txt").exists());
    }

    #[test]
    fn reset_worktree_skips_when_dirty_task_branch() {
        let tmp = tempfile::tempdir().unwrap();
        let repo = init_git_repo(&tmp, "batty-merge-test");
        let (worktree_dir, team_config_dir) = engineer_worktree_paths(&repo, "eng-wip");

        prepare_engineer_assignment_worktree(
            &repo,
            &worktree_dir,
            "eng-wip",
            "eng-wip/88",
            &team_config_dir,
        )
        .unwrap();

        // Create uncommitted changes on the task branch.
        std::fs::write(worktree_dir.join("wip.txt"), "work in progress\n").unwrap();
        git_ok(&worktree_dir, &["add", "wip.txt"]);

        // reset_engineer_worktree should skip (not error) when dirty on task branch.
        reset_engineer_worktree(&repo, "eng-wip").unwrap();

        // Verify the worktree was NOT reset — still on task branch with changes.
        let branch = current_worktree_branch(&worktree_dir).unwrap();
        assert_eq!(branch, "eng-wip/88");
        assert!(worktree_dir.join("wip.txt").exists());
    }
}