termaxa 0.18.6

A cooperative gate for the shell commands AI coding agents run — command previews, automatic backups, allow/ask/deny policy, and audit logging.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
use crate::audit::{now, AuditEntry, AuditLog};
use crate::context;
use crate::policy::{Action, Policy};
use anyhow::Result;
use serde_json::json;
use std::io::Read;

/// The session id `doctor`'s liveness probe sends, and the value the hook
/// checks to recognise a probe and stay inert. One meaning, one spelling
/// (decision #21): it was written out independently in `doctor.rs` and here,
/// and a sentinel that only works when two string literals agree is a silent
/// failure waiting to happen - a typo in either would make the probe write a
/// real audit line, or make a real session go inert.
///
/// HONEST RESIDUE: four integration-test literals remain - three in
/// `tests/hook_dialects.rs` and one in `tests/probe_inertness.rs`. `termaxa`
/// is a binary crate with no lib target, so integration tests cannot import
/// this const at all. Those literals are the reason a rename here would need
/// `grep termaxa-doctor-probe` rather than the compiler. Unifying them needs
/// a lib target, which is a larger change than this sweep and is the honest
/// remaining half of decision #21 here.
pub const PROBE_SESSION: &str = "termaxa-doctor-probe";

/// Which agent is calling us. Detected from the input's shape, so
/// `termaxa hook` is ONE command that speaks every agent's dialect.
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Dialect {
    /// Claude Code PreToolUse: {"tool_name":"Bash","tool_input":{"command":...}}
    /// -> {"hookSpecificOutput":{"permissionDecision":...}}
    ClaudeCode,
    /// GitHub Copilot CLI running the hooks it finds in `.claude/settings.json`
    /// ("repo settings"). It speaks Claude Code's shape - PreToolUse and
    /// PostToolUse, `tool_name:"Bash"`, `tool_input.command` - but it is
    /// Copilot, and it reads a non-zero exit as a hook error rather than a
    /// deny. Captured live Sep 9, 2026: the payload carries a `timestamp`
    /// string and no `transcript_path`, which is the reverse of Claude Code.
    /// Rendered in Claude Code's shape; exits 0 on deny; audited as copilot.
    CopilotRepoSettings,
    /// Cursor beforeShellExecution (v1.7+): {"hook_event_name":"beforeShellExecution","command":...}
    /// -> {"permission":..., "agent_message":...}
    Cursor,
    /// OpenAI Codex CLI: same PreToolUse/hookSpecificOutput shape as Claude Code,
    /// but the event self-identifies as codex via `agent` / hook_event_name.
    Codex,
    /// GitHub Copilot CLI: {"toolName":"shell","toolArgs":"{\"command\":...}"}
    /// -> bare {"permissionDecision":..., "permissionDecisionReason":...} (no wrapper)
    Copilot,
}

pub struct ParsedHook {
    pub dialect: Dialect,
    pub command: String,
    pub cwd: String,
    pub session: Option<String>,
    /// True for post-execution events (afterShellExecution / postToolUse /
    /// PostToolUse): the command already ran, so this is a receipt, not a gate.
    pub is_post: bool,
}

/// Raw JSON in -> normalized hook event out. None = not for us; step aside.
/// Normalize a URI-style path to a native one.
/// Cursor emits workspace roots like "/c:/Users/User/code/proj" on Windows;
/// convert to "c:/Users/User/code/proj" (which Rust's Path handles fine).
/// On Unix, a leading-slash path is already native, so leave it alone.
fn normalize_uri_path(p: &str) -> String {
    // "/c:/..." -> "c:/..."  (strip the leading slash before a drive letter)
    let bytes = p.as_bytes();
    if bytes.len() >= 3 && bytes[0] == b'/' && bytes[2] == b':' && bytes[1].is_ascii_alphabetic() {
        return p[1..].to_string();
    }
    p.to_string()
}

impl Dialect {
    /// Stable name for the audit record. Written to disk, so it is a wire
    /// format: changing one of these strings rewrites what past entries mean,
    /// and a reader comparing across versions would silently miscount.
    pub fn actor(self) -> &'static str {
        match self {
            Dialect::ClaudeCode => "claude-code",
            Dialect::Cursor => "cursor",
            Dialect::Codex => "codex",
            Dialect::Copilot => "copilot",
            Dialect::CopilotRepoSettings => "copilot",
        }
    }
}

pub fn parse_input(raw: &str) -> Option<ParsedHook> {
    // Cursor (and some Windows shells) prepend a UTF-8 BOM; strip it or the
    // JSON parse fails on the leading bytes.
    let raw = raw.trim_start_matches('\u{feff}').trim();
    let v: serde_json::Value = serde_json::from_str(raw).ok()?;
    let s = |k: &str| v.get(k).and_then(|x| x.as_str()).map(str::to_string);

    // Event name, lowercased for version-tolerant matching. Cursor renamed its
    // hooks between versions: older builds sent `beforeShellExecution` /
    // `afterShellExecution`; Cursor 3.11+ sends `preToolUse` / `postToolUse`
    // (camelCase) with `tool_name:"Shell"`. Claude Code sends `PreToolUse` /
    // `PostToolUse`. Match all of them case-insensitively.
    let event = s("hook_event_name").map(|e| e.to_lowercase());
    let is_pre = matches!(
        event.as_deref(),
        Some("pretooluse") | Some("beforeshellexecution")
    );
    let is_post = matches!(
        event.as_deref(),
        Some("posttooluse") | Some("aftershellexecution")
    );

    // Cursor identifies itself several ways across versions: `cursor_version`
    // (3.11+), `tool_name:"Shell"` + `conversation_id` (3.11+), OR the legacy
    // `beforeShellExecution`/`afterShellExecution` event names (older builds,
    // which no other agent uses). Detect all so every Cursor version routes here.
    let is_cursor = v.get("cursor_version").is_some()
        || matches!(
            event.as_deref(),
            Some("beforeshellexecution") | Some("aftershellexecution")
        )
        || (s("tool_name").as_deref() == Some("Shell") && v.get("conversation_id").is_some());

    // Command from either top-level `command` (old Cursor) or
    // `tool_input.command` (Claude/Codex/Cursor 3.11).
    let command_from = || -> String {
        if let Some(c) = s("command") {
            return c;
        }
        v.get("tool_input")
            .and_then(|t| t.get("command"))
            .and_then(|c| c.as_str())
            .unwrap_or("")
            .to_string()
    };

    // cwd: prefer explicit non-empty top-level cwd, then tool_input.cwd, then
    // the first workspace root (URI-normalized for Windows drive paths).
    let resolve_cwd = || -> String {
        let top = s("cwd").unwrap_or_default();
        if !top.is_empty() {
            return top;
        }
        let ti = v
            .get("tool_input")
            .and_then(|t| t.get("cwd"))
            .and_then(|c| c.as_str())
            .unwrap_or("")
            .to_string();
        if !ti.is_empty() {
            return ti;
        }
        v.get("workspace_roots")
            .and_then(|w| w.as_array())
            .and_then(|a| a.first())
            .and_then(|x| x.as_str())
            .map(normalize_uri_path)
            .unwrap_or_default()
    };

    // ---- Cursor (any version): pre gates, post is a receipt ----
    if is_cursor && (is_pre || is_post) {
        let command = command_from();
        if command.is_empty() {
            return None;
        }
        return Some(ParsedHook {
            dialect: Dialect::Cursor,
            command,
            cwd: resolve_cwd(),
            session: s("conversation_id").or_else(|| s("session_id")),
            is_post,
        });
    }

    // ---- Copilot CLI: toolName + toolArgs (a JSON *string* holding the args) ----
    //
    // `shell`, `bash`, `run_in_terminal` are the documented names. The one
    // Copilot CLI actually sent on Windows (captured Sep 9, 2026) was
    // `powershell`, with `toolArgs` as an inline object carrying `command`,
    // `description`, `mode` and `initial_wait`. `pwsh` and `cmd` are the
    // obvious siblings and are unmeasured; listing them can only widen
    // what is gated.
    if let Some(tool) = s("toolName") {
        if matches!(
            tool.as_str(),
            "shell" | "bash" | "run_in_terminal" | "powershell" | "pwsh" | "cmd"
        ) {
            let args_val = match v.get("toolArgs") {
                Some(serde_json::Value::String(st)) => {
                    serde_json::from_str::<serde_json::Value>(st).unwrap_or(serde_json::Value::Null)
                }
                Some(other) => other.clone(),
                None => serde_json::Value::Null,
            };
            let command = args_val
                .get("command")
                .and_then(|c| c.as_str())
                .unwrap_or("")
                .to_string();
            if command.is_empty() {
                return None;
            }
            return Some(ParsedHook {
                dialect: Dialect::Copilot,
                command,
                cwd: s("cwd")
                    .or_else(|| s("workingDirectory"))
                    .unwrap_or_default(),
                session: s("sessionId").or_else(|| s("session_id")),
                is_post,
            });
        }
    }

    // ---- Claude Code & Codex: PreToolUse/PostToolUse + tool_input.command ----
    // (Cursor already handled above, so a bare tool_name:"Bash" here is Claude/Codex.)
    if s("tool_name").as_deref() == Some("Bash") || is_pre || is_post {
        let command = v
            .get("tool_input")
            .and_then(|t| t.get("command"))
            .and_then(|c| c.as_str())
            .unwrap_or("")
            .to_string();
        if command.is_empty() {
            return None;
        }
        let looks_codex = s("agent")
            .map(|a| a.to_lowercase().contains("codex"))
            .unwrap_or(false)
            || s("source")
                .map(|a| a.to_lowercase().contains("codex"))
                .unwrap_or(false)
            || sent_by_codex(&v);
        return Some(ParsedHook {
            dialect: if looks_codex {
                Dialect::Codex
            } else if sent_by_copilot_repo_settings(&v) {
                Dialect::CopilotRepoSettings
            } else {
                Dialect::ClaudeCode
            },
            command,
            cwd: s("cwd").unwrap_or_default(),
            session: s("session_id").or_else(|| s("conversation_id")),
            is_post,
        });
    }

    None
}

/// Copilot CLI's Claude-shaped hook payload ("repo settings"), captured live
/// Sep 9, 2026: `{"hook_event_name":"PreToolUse","session_id":...,
/// "timestamp":"2026-09-09T22:52:05.667Z","cwd":...,"tool_name":"Bash",
/// "tool_input":{"command":...,"description":...}}`. Claude Code's own
/// payload has a `transcript_path` and no `timestamp`; Codex has `turn_id`.
/// A string timestamp with no transcript is Copilot in Claude's clothing.
fn sent_by_copilot_repo_settings(v: &serde_json::Value) -> bool {
    v.get("timestamp").map(|t| t.is_string()).unwrap_or(false)
        && v.get("transcript_path").is_none()
        && v.get("turn_id").is_none()
}

/// A file-write tool call: the agent is about to write to `path`.
///
/// Kept separate from [`ParsedHook`] rather than folded into it. The shell
/// path is command-shaped the whole way down — policy, classifier, preview and
/// insurance all take a command string — and a write event has no command.
/// Widening `ParsedHook` would thread an empty `command` through five engines
/// that have nothing to say about it.
#[derive(Debug, Clone, PartialEq)]
pub struct FileWrite {
    pub dialect: Dialect,
    pub tool: String,
    pub path: String,
    pub cwd: String,
    pub session: Option<String>,
}

/// Names that mean the tool writes. Matched as substrings, case-folded, so a
/// rename within the same vocabulary (`Write`, `write_file`, `MultiEdit`,
/// `edit_file`, `create_file`, `apply_patch`, `str_replace_editor`,
/// `NotebookEdit`) keeps its coverage.
///
/// Coarse on purpose. An exact list of tool names is the shape that broke when
/// Cursor renamed its hook events between 3.10 and 3.11, and a rename here
/// would remove the gate without removing the registration, which is the quiet
/// direction. Read-shaped tools carry none of these verbs, which is what keeps
/// `Read` on `.termaxa/policy.yaml` from being refused — reading the policy is
/// allowed on the shell path too.
const WRITE_VERBS: [&str; 7] = [
    "write", "edit", "create", "patch", "replace", "notebook", "save",
];

/// Field names that carry the target path, across dialects.
const PATH_FIELDS: [&str; 6] = [
    "file_path",
    "notebook_path",
    "filePath",
    "target_file",
    "path",
    "abs_path",
];

/// Raw JSON in -> a file-write event out. `None` = not one; step aside.
///
/// Only called after [`parse_input`] has declined, so anything command-shaped
/// has already been handled by the shell path.
pub fn parse_file_write(raw: &str) -> Option<FileWrite> {
    let raw = raw.trim_start_matches('\u{feff}').trim();
    let v: serde_json::Value = serde_json::from_str(raw).ok()?;
    let s = |k: &str| v.get(k).and_then(|x| x.as_str()).map(str::to_string);

    // Pre only. A write that already happened cannot be gated, and a receipt
    // for it would give the circuit breaker nothing it can count.
    let event = s("hook_event_name").map(|e| e.to_lowercase());
    if matches!(
        event.as_deref(),
        Some("posttooluse") | Some("aftershellexecution")
    ) {
        return None;
    }

    let tool = s("tool_name").or_else(|| s("toolName"))?;
    let folded = tool.to_lowercase();
    if !WRITE_VERBS.iter().any(|v| folded.contains(v)) {
        return None;
    }

    // Copilot delivers its arguments as a JSON *string*; everyone else as an
    // object under `tool_input`.
    let args = match v.get("toolArgs") {
        Some(serde_json::Value::String(st)) => serde_json::from_str(st).ok()?,
        Some(other) => other.clone(),
        None => v.get("tool_input")?.clone(),
    };

    let path = PATH_FIELDS
        .iter()
        .find_map(|k| args.get(k).and_then(|p| p.as_str()))
        .filter(|p| !p.is_empty())?;

    let is_cursor = v.get("cursor_version").is_some() || v.get("conversation_id").is_some();
    let looks_codex = s("agent")
        .or_else(|| s("source"))
        .map(|a| a.to_lowercase().contains("codex"))
        .unwrap_or(false)
        || sent_by_codex(&v);
    let dialect = if v.get("toolName").is_some() {
        Dialect::Copilot
    } else if is_cursor {
        Dialect::Cursor
    } else if looks_codex {
        Dialect::Codex
    } else if sent_by_copilot_repo_settings(&v) {
        Dialect::CopilotRepoSettings
    } else {
        Dialect::ClaudeCode
    };

    Some(FileWrite {
        dialect,
        tool,
        path: path.to_string(),
        cwd: s("cwd")
            .or_else(|| s("workingDirectory"))
            .or_else(|| {
                v.get("workspace_roots")
                    .and_then(|w| w.as_array())
                    .and_then(|a| a.first())
                    .and_then(|x| x.as_str())
                    .map(normalize_uri_path)
            })
            .unwrap_or_default(),
        session: s("session_id")
            .or_else(|| s("conversation_id"))
            .or_else(|| s("sessionId")),
    })
}

/// Gate a file-write tool call.
///
/// Deny if the target is one of the gate's own files, and say nothing at all
/// otherwise. Saying nothing is the point: an `allow` here would be Termaxa
/// asserting a verdict on every file the agent writes, which it has no opinion
/// about and no way to form one. Where the policy merely does not object, the
/// harness's own permission flow is left exactly as it was.
///
/// The decision does not depend on the policy, so it survives a project with
/// no `.termaxa/` at all and a policy that will not parse. Both are states in
/// which the shell path has nothing to say, and both are states in which
/// "do not overwrite the hook config" is still the right answer.
/// Refuse a write to the gate's own configuration.
///
/// Returns an `Outcome` rather than exiting: this used to call
/// `process::exit(2)` inline, which is correct for a one-shot hook process and
/// FATAL for the supervisor daemon - the first protected-file write an agent
/// attempted would have taken the supervisor down with it, and a dead
/// supervisor denies everything afterwards (v0.16's deny-on-unreachable). A
/// gate that kills itself by refusing something is a denial of service with
/// extra steps.
fn gate_file_write(w: &FileWrite) -> Outcome {
    let silent = Outcome {
        rendered: None,
        exit_code: 0,
        audit_seq: None,
    };
    let Some(protected) = crate::protect::classify(&w.cwd, &w.path) else {
        return silent;
    };

    let subject = format!("{} {}", w.tool, w.path);
    let reason = format!("[termaxa] {}", protected.reason);

    // Audit best-effort, and never at the cost of the block: if the state dir
    // cannot be resolved there is nowhere to write the record, and a deny that
    // went unrecorded is still a deny.
    let start_dir = if !w.cwd.is_empty() && std::path::Path::new(&w.cwd).is_dir() {
        std::path::PathBuf::from(&w.cwd)
    } else {
        std::env::current_dir().unwrap_or_default()
    };
    if let Ok(paths) = crate::paths::resolve_from(&start_dir) {
        if let Ok(log) = AuditLog::new(&paths.state_dir) {
            let (ts_ms, ts) = now();
            let _ = log.append(&AuditEntry {
                ts_ms,
                ts,
                source: "hook".into(),
                actor: Some(w.dialect.actor().to_string()),
                // A protected-path refusal is the write matcher's own rule,
                // not the policy's - an explicit decision either way.
                decided_by: Some(
                    crate::policy::DecisionSource::ExplicitRule
                        .as_str()
                        .to_string(),
                ),
                command: subject.clone(),
                decision: "deny".into(),
                matched_rule: Some(protected.what.to_string()),
                reason: protected.reason.to_string(),
                signals: vec![],
                escalated: false,
                session: w.session.clone(),
                backup: None,
                preview: None,
                intent: None,
                approved: None,
                exit_code: None,
                cwd: w.cwd.clone(),
                // Filled by `append`, which links each entry to the one
                // before it.
                prev: None,
                hash: None,
            });
        }
        if let Ok(policy) = Policy::load(&paths.policy_file()) {
            crate::notify::maybe_send(&policy, "deny", &subject, protected.reason, "hook");
        }
    }

    Outcome {
        rendered: Some(render_response(w.dialect, "deny", &reason)),
        exit_code: 2,
        audit_seq: None,
    }
}

/// Should this decision be withheld rather than emitted?
///
/// Only a default-allow — allow with no rule behind it — and only for the
/// dialect whose contract documents that no output means no opinion. Claude
/// Code documents exactly that; Codex claims the same contract. Cursor and
/// Copilot do not, and the last time this project assumed Cursor's hook
/// contract it shipped four releases of silent ungating (3.11). They keep
/// emitting until a TERMAXA_HOOK_DEBUG capture on a live session says
/// silence is safe. See the comment at the call site in `run` for why the
/// default-allow goes silent at all.
fn is_silent(dialect: Dialect, decision: &crate::policy::Decision) -> bool {
    match dialect {
        Dialect::ClaudeCode => {
            decision.action == crate::policy::Action::Allow && decision.matched_rule.is_none()
        }
        // Codex rejects an explicit `allow` at PreToolUse ("unsupported
        // permissionDecision:allow", measured Sep 5, 2026, codex-cli 0.153.4,
        // Windows) and treats a failed hook as fail-open to its own prompt.
        // Every allow is silence, matched or not; the audit log keeps the
        // rule name.
        Dialect::Codex => decision.action == crate::policy::Action::Allow,
        _ => false,
    }
}

/// Codex's real PreToolUse payload (captured live Sep 5, 2026, codex-cli
/// 0.153.4 on Windows) carries no `agent` or `source` tag; it is the Claude
/// Code shape plus `turn_id`, `model`, `permission_mode` and a transcript
/// under `~/.codex/sessions`. `turn_id` is the field Claude Code does not
/// send; the transcript path is the fallback.
fn sent_by_codex(v: &serde_json::Value) -> bool {
    v.get("turn_id").is_some()
        || v.get("transcript_path")
            .and_then(|p| p.as_str())
            .map(|p| p.contains(".codex"))
            .unwrap_or(false)
}

/// Decision -> the JSON each agent expects on stdout.
pub fn render_response(dialect: Dialect, permission: &str, reason: &str) -> String {
    match dialect {
        Dialect::ClaudeCode | Dialect::CopilotRepoSettings => json!({
            "hookSpecificOutput": {
                "hookEventName": "PreToolUse",
                "permissionDecision": permission,
                "permissionDecisionReason": reason,
            }
        })
        .to_string(),
        // Official docs use snake_case; early builds used camelCase. Emit both —
        // unknown keys are ignored, and this survives either Cursor version.
        Dialect::Cursor => json!({
            "permission": permission,
            "agent_message": reason,
            "user_message": reason,
            "agentMessage": reason,
            "userMessage": reason,
        })
        .to_string(),
        // Codex uses the same PreToolUse/hookSpecificOutput contract as Claude Code.
        Dialect::Codex => json!({
            "hookSpecificOutput": {
                "hookEventName": "PreToolUse",
                "permissionDecision": permission,
                "permissionDecisionReason": reason,
            }
        })
        .to_string(),
        // Copilot CLI expects the decision at the top level (no hookSpecificOutput wrapper).
        Dialect::Copilot => json!({
            "permissionDecision": permission,
            "permissionDecisionReason": reason,
        })
        .to_string(),
    }
}

/// Run as a Claude Code PreToolUse hook.
///
/// Reads the hook event JSON from stdin and prints a JSON decision:
///   allow -> permissionDecision "allow"  (command runs without prompting)
///   ask   -> permissionDecision "ask"    (Claude Code shows its own approval prompt)
///   deny  -> permissionDecision "deny"   (blocked; reason is fed back to the model)
///
/// Non-Bash tools and unparsable input fall through with no decision
/// (exit 0, no output), leaving Claude Code's normal permission flow intact.
/// What a hook invocation concluded, before anyone prints or exits.
///
/// v0.17. The decision path used to print and `process::exit` inline, which
/// is fine for a process that answers one payload and dies - and impossible
/// for a daemon that must answer thousands and stay alive. Both callers now
/// share the same logic and differ only in what they do with this:
/// `hook::run` prints and exits, `supervise` serialises it onto a socket.
///
/// Duplicating the decision path instead would have put two engines on one
/// question, which is the mistake this codebase keeps paying for (#37) - and
/// here the two copies would have been the trusted one and the untrusted one.
#[derive(Debug, Clone)]
pub struct Outcome {
    /// The rendered response in the harness's dialect, or `None` when the
    /// answer is silence (an allow the agent should not be interrupted by).
    pub rendered: Option<String>,
    pub exit_code: i32,
    /// The audit sequence this was recorded under.
    ///
    /// Always `None` today: the audit log is append-only JSONL with no
    /// sequence numbers, so there is nothing to report. The field is in the
    /// PROTOCOL because a hook that cannot write the record still wants a way
    /// to reference the entry the supervisor wrote — but the protocol
    /// carrying it does not mean this end can fill it.
    ///
    /// Kept rather than removed because the wire type is already published in
    /// v0.16's `Response`; removing it here would leave the two halves
    /// disagreeing about the message shape. It is filled when the log grows
    /// sequence numbers, which is its own decision (#65: record what the
    /// system can establish).
    ///
    /// The allow is for WINDOWS specifically: both readers of this field live
    /// in `#[cfg(unix)]` blocks (the daemon's response, the hook's forward),
    /// so a Windows build sees it written and never read. Scoped to the field
    /// rather than the struct, and narrated, because "dead on one platform"
    /// is a different fact from "dead".
    #[cfg_attr(not(unix), allow(dead_code))]
    pub audit_seq: Option<u64>,
}

pub fn run() -> Result<()> {
    let mut buf = String::new();
    std::io::stdin().read_to_string(&mut buf)?;
    let outcome = decide(&buf)?;
    if let Some(r) = &outcome.rendered {
        println!("{r}");
    }
    // Belt and suspenders: Cursor and Copilot also honor the process exit code
    // (2 = block). On Windows especially, stdout JSON delivery can be finicky,
    // so a denied command exits non-zero to guarantee the block lands.
    use std::io::Write as _;
    let _ = std::io::stdout().flush();
    if outcome.exit_code != 0 {
        std::process::exit(outcome.exit_code);
    }
    Ok(())
}

/// A payload the reader could not parse, that nevertheless looks like a
/// shell tool call: a tool named like a shell, or a `command` field, within a
/// few levels of the JSON. This is the shape known-limitation 4 describes -
/// Cursor 3.11 renamed its events and the gate passed every command through
/// in silence for four releases. Under `unrecognised: deny` the answer is a
/// refusal with a reason, and the payload is worth filing. Under the default
/// it stays a pass-through, as it always was.
fn refuse_unrecognised(raw: &str) -> Option<Outcome> {
    let json: serde_json::Value = serde_json::from_str(raw.trim_start_matches('\u{feff}')).ok()?;
    if !looks_like_shell_tool_event(&json, 0) {
        return None;
    }
    let cwd = json
        .get("cwd")
        .and_then(|c| c.as_str())
        .filter(|c| !c.is_empty() && std::path::Path::new(c).is_dir())
        .map(std::path::PathBuf::from)
        .or_else(|| {
            json.get("workspace_roots")
                .and_then(|r| r.get(0))
                .and_then(|r| r.as_str())
                .map(std::path::PathBuf::from)
        })
        .unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    let paths = crate::paths::resolve_from(&cwd).ok()?;
    let policy = Policy::load(&paths.policy_file()).ok()?;
    if policy.unrecognised != crate::policy::Unrecognised::Deny {
        return None;
    }
    let reason = "termaxa: hook payload not recognised as a shell tool call the gate can read; \
                  refused because the policy sets `unrecognised: deny`. Set TERMAXA_HOOK_DEBUG to \
                  a file to capture the payload and file it."
        .to_string();
    if let Ok(log) = AuditLog::new(&paths.state_dir) {
        let (ts_ms, ts) = now();
        let _ = log.append(&AuditEntry {
            ts_ms,
            ts,
            source: "hook".into(),
            actor: Some("unrecognised".into()),
            decided_by: Some("policy".into()),
            command: raw.chars().take(200).collect(),
            decision: "deny".into(),
            matched_rule: Some("unrecognised: deny".into()),
            reason: reason.clone(),
            signals: vec![],
            escalated: false,
            session: None,
            backup: None,
            preview: None,
            intent: None,
            approved: None,
            exit_code: None,
            cwd: cwd.display().to_string(),
            prev: None,
            hash: None,
        });
    }
    // A payload with `toolName` is Copilot-shaped (Claude Code, Codex and
    // Cursor all say `tool_name`), and Copilot reads a deny only as exit-0
    // JSON in its own shape - anything else is "hook errored", which
    // `failClosed` still turns into a block but with the reason lost. That
    // is exactly what the first live Copilot session showed, Sep 9, 2026:
    // this refusal, in Claude Code's shape with exit 2, reached the user as
    // "(hook errored)". Everyone else keeps the belt-and-suspenders exit 2.
    let copilot_shaped = json.get("toolName").is_some();
    Some(Outcome {
        rendered: Some(render_response(
            if copilot_shaped {
                Dialect::Copilot
            } else {
                Dialect::ClaudeCode
            },
            "deny",
            &reason,
        )),
        exit_code: if copilot_shaped { 0 } else { 2 },
        audit_seq: None,
    })
}

/// A tool named like a shell, or a `command` string, anywhere in the first
/// four levels. A file read or edit has neither; a renamed shell event has
/// at least one.
fn looks_like_shell_tool_event(v: &serde_json::Value, depth: usize) -> bool {
    if depth > 4 {
        return false;
    }
    match v {
        serde_json::Value::Object(map) => map.iter().any(|(k, val)| {
            let key = k.to_ascii_lowercase();
            if key == "command" && val.is_string() {
                return true;
            }
            if matches!(key.as_str(), "tool_name" | "toolname" | "tool" | "name") {
                if let Some(name) = val.as_str() {
                    let n = name.to_ascii_lowercase();
                    if [
                        "bash",
                        "shell",
                        "exec",
                        "terminal",
                        "cmd",
                        "powershell",
                        "pwsh",
                    ]
                    .iter()
                    .any(|w| n.contains(w))
                    {
                        return true;
                    }
                }
            }
            looks_like_shell_tool_event(val, depth + 1)
        }),
        serde_json::Value::Array(items) => items
            .iter()
            .any(|i| looks_like_shell_tool_event(i, depth + 1)),
        _ => false,
    }
}

/// Decide one payload. Prints nothing, exits nothing.
///
/// The whole hook path, minus I/O: this is what the daemon calls with bytes
/// off a socket and what `run` calls with bytes off stdin.
pub fn decide(raw_payload: &str) -> Result<Outcome> {
    let buf = raw_payload.to_string();

    // Diagnostic: set TERMAXA_HOOK_DEBUG=<path> to capture exactly what the
    // agent delivered (raw stdin + argv). Invaluable for debugging Windows
    // hook invocation where stdin delivery varies by agent.
    if let Ok(dbg) = std::env::var("TERMAXA_HOOK_DEBUG") {
        use std::io::Write as _;
        if let Ok(mut f) = std::fs::OpenOptions::new()
            .create(true)
            .append(true)
            .open(&dbg)
        {
            let argv: Vec<String> = std::env::args().collect();
            let _ = writeln!(
                f,
                "--- {} ---\nARGV: {:?}\nSTDIN_LEN: {}\nSTDIN: {}\n",
                now().1,
                argv,
                buf.len(),
                buf
            );
        }
    }

    let input = match parse_input(&buf) {
        Some(p) => p,
        None => {
            // Not command-shaped. It may still be a file-write tool call, and
            // the one thing a write tool must not do is rewrite the gate's own
            // configuration. Anything else here stays out of the way, exactly
            // as before.
            if let Some(w) = parse_file_write(&buf) {
                return Ok(gate_file_write(&w));
            }
            if let Some(refused) = refuse_unrecognised(&buf) {
                return Ok(refused);
            }
            return Ok(Outcome {
                rendered: None,
                exit_code: 0,
                audit_seq: None,
            });
        }
    };
    let command = input.command.clone();

    // Post-execution event: the command already ran. Record a receipt
    // (source "post") so the circuit breaker can exclude human-approved
    // commands from the retry threshold (decision #13). No policy eval, no
    // gating, no output — append and exit.
    if input.is_post {
        let start_dir = if !input.cwd.is_empty() && std::path::Path::new(&input.cwd).is_dir() {
            std::path::PathBuf::from(&input.cwd)
        } else {
            std::env::current_dir().unwrap_or_default()
        };
        if let Ok(paths) = crate::paths::resolve_from(&start_dir) {
            if let Ok(log) = AuditLog::new(&paths.state_dir) {
                let (ts_ms, ts) = now();
                let _ = log.append(&AuditEntry {
                    ts_ms,
                    ts,
                    source: "post".into(),
                    actor: Some(input.dialect.actor().to_string()),
                    // A receipt records that a command RAN. Nothing decided
                    // anything here, and naming a decider would invent one.
                    decided_by: None,
                    command: command.clone(),
                    decision: "executed".into(),
                    matched_rule: None,
                    reason: "post-execution receipt".into(),
                    signals: vec![],
                    escalated: false,
                    session: input.session.clone(),
                    backup: None,
                    preview: None,
                    intent: crate::intent::classify_command(&command)
                        .map(|i| i.label().to_string()),
                    approved: Some(true),
                    exit_code: None,
                    cwd: input.cwd.clone(),
                    // Filled by `append`, which links each entry to the one
                    // before it.
                    prev: None,
                    hash: None,
                });
            }
        }
        return Ok(Outcome {
            rendered: None,
            exit_code: 0,
            audit_seq: None,
        });
    }

    // Agents spawn the hook with an arbitrary working directory, but they tell us
    // the real project dir in the payload's `cwd`. Resolve the policy explicitly
    // from THAT path rather than mutating the global process cwd (which would make
    // any later relative-path logic ambiguous). This bug affected every agent; it
    // only surfaced with Cursor because Claude Code happened to spawn hooks inside
    // the project dir, masking the incorrect assumption.
    let start_dir = if !input.cwd.is_empty() && std::path::Path::new(&input.cwd).is_dir() {
        std::path::PathBuf::from(&input.cwd)
    } else {
        std::env::current_dir().unwrap_or_default()
    };
    let paths = crate::paths::resolve_from(&start_dir)?;

    // One-line resolution trace (reviewer request): set TERMAXA_HOOK_DEBUG to a
    // file path and this records exactly what got resolved, so future debugging
    // is minutes not hours.
    if let Ok(dbg) = std::env::var("TERMAXA_HOOK_DEBUG") {
        use std::io::Write as _;
        if let Ok(mut f) = std::fs::OpenOptions::new()
            .create(true)
            .append(true)
            .open(&dbg)
        {
            let _ = writeln!(
                f,
                "[{}] dialect={:?} process_cwd={:?} payload_cwd={:?} resolved_policy={}",
                now().1,
                input.dialect,
                std::env::current_dir().ok(),
                input.cwd,
                paths.policy_file().display()
            );
        }
    }

    // ---- supervised mode (v0.16 groundwork, v0.17 daemon) ----
    //
    // Detected from the filesystem: the socket is either there or it is not.
    // When it IS there, this hook is inside the agent's trust domain and has
    // no authority of its own - it forwards the payload and prints what comes
    // back. Until the daemon ships there is nothing to forward TO, so the
    // reachability check is the whole of it, and it fails CLOSED.
    //
    // That direction is the permanent answer to Cursor 3.11: four releases of
    // silent fail-open, because a gate that loses its brain and carries on is
    // worse than one that stops. An operator who configured supervision gets
    // a refusal with a reason, not a decision made by the wrong process.
    if crate::supervise::detect() == crate::supervise::Mode::Supervised {
        // Forward and print. Nothing below this line runs: this hook has no
        // authority in supervised mode, and exercising any would produce a
        // decision made inside the agent's own trust domain.
        //
        // The endpoint comes from `TERMAXA_SOCKET` (exported by `wrap`), an
        // XDG runtime dir, or the operator's own state directory - NOT from
        // this process's $HOME. The first proving run found why: a hook
        // running as the agent resolved $HOME to the agent's home, found no
        // socket, and quietly decided on its own authority.
        //
        // A second supervised hook must not recurse into the supervisor: the
        // daemon calls `decide` itself, and if that call re-entered here it
        // would connect to its own socket and deadlock a single-threaded
        // server. TERMAXA_SUPERVISOR=1 in the daemon's own process breaks the
        // loop.
        if std::env::var("TERMAXA_SUPERVISOR").as_deref() != Ok("1") {
            let sock = crate::supervise::endpoint().unwrap_or_default();
            return Ok(
                match crate::supervise::ask(&sock, &buf, Some(input.dialect.actor()), &input.cwd) {
                    Ok(resp) => Outcome {
                        rendered: Some(resp.rendered),
                        exit_code: resp.exit_code,
                        audit_seq: resp.audit_seq,
                    },
                    Err(e) => Outcome {
                        rendered: Some(render_response(
                            input.dialect,
                            "deny",
                            &format!("[termaxa] {}", e.reason()),
                        )),
                        exit_code: 2,
                        audit_seq: None,
                    },
                },
            );
        }
    }

    let policy = Policy::load(&paths.policy_file())?;

    // The payload's cwd is where the command runs; the project root comes
    // from the located policy. Never the process cwd - a hook runs wherever
    // the harness spawned it.
    let ctx = crate::resolve::EvalContext::from_paths(&start_dir, &paths);
    let base = policy.evaluate_command(&command, &ctx);
    let signals = context::gather(&command);
    let (mut decision, escalated) = context::apply(base, &signals);

    // Destructive-intent classification (v0.11) — recorded on every entry so
    // the breaker can count attempts without re-parsing history.
    let intent_label = crate::intent::classify_command(&command).map(|i| i.label().to_string());

    // Session circuit breaker: repeated destructive intent in one session
    // escalates ask -> deny. Only ASK is ever touched — explicit allow/deny
    // rules are deliberate user policy. Runs BEFORE the backup step so a
    // breaker-denied command never triggers insurance (nothing will run).
    // A DEFAULT-ask file-overwrite must neither accumulate pressure (see
    // recent_intent_count) nor BE the tripping command: three denied `.env`
    // attempts must not turn the next `cargo build > build.log` into a deny.
    // The policy had no opinion on that build log — decline-not-allow,
    // applied to the breaker.
    let ungated_overwrite = decision.matched_rule.is_none()
        && matches!(
            crate::intent::classify_command(&command),
            Some(crate::intent::Intent::FileOverwrite)
        );
    if decision.action == Action::Ask && !ungated_overwrite {
        let log_path = paths.state_dir.join("logs").join("audit.jsonl");
        if let Some((_intent, _prior, reason)) = crate::intent::maybe_trip(
            &paths.policy_file(),
            &log_path,
            input.session.as_deref(),
            &command,
        ) {
            decision = crate::policy::Decision {
                action: Action::Deny,
                // The breaker chose this deliberately, from history rather
                // than from a rule - a Context decision in the sense that
                // matters here: something formed an opinion.
                source: crate::policy::DecisionSource::Context,
                matched_rule: Some(crate::intent::BREAKER_RULE.to_string()),
                reason,
            };
        }
    }

    // Pass the project root so the delete preview can answer "is this target
    // outside the project?" — the process cwd can't supply it, because the
    // agent may spawn us from anywhere (the Cursor cwd bug).
    let (preview_summary, uninsurable) = {
        // A denied command must not cause a subprocess. The preview is still
        // generated — statically — so the denial reason keeps its detail.
        let live = decision.action != crate::policy::Action::Deny;
        match crate::preview::generate(
            &command,
            paths.project_dir.parent(),
            std::path::Path::new(&input.cwd),
            live,
        ) {
            Some(p) => (Some(p.summary), p.uninsurable),
            None => (None, false),
        }
    };

    // Probe mode requires BOTH the env var and the sentinel session id — see
    // the note at the audit-suppression site below for why. Computed here
    // because the insurance amplifier needs it.
    let is_probe = std::env::var("TERMAXA_HOOK_PROBE").as_deref() == Ok("1")
        && input.session.as_deref() == Some(PROBE_SESSION);

    // Roadmap 2.5: an ask on a command with no net becomes a deny. Applied
    // after context escalation, so a signal that raised allow->ask can then
    // be amplified to deny by uninsurability - the two compose in the order
    // they are meant to: is this concerning, and if so, is asking safe?
    //
    // NOT for a probe. `doctor` asks "does the configured POLICY deny
    // anything", which is a different question from "can the enforcement
    // stack stop this command". Amplifying the probe would answer the second
    // and print the first: a policy with no rules at all would look
    // protective, because `rm -rf /` is uninsurable and the default is ask.
    // That misreading gets worse with every safeguard added later, so the
    // probe sees the policy verdict and enforcement sees the amplified one.
    // One reader, two questions, answered separately (#37).
    let (mut decision, uninsured_escalation) = if is_probe {
        (decision, false)
    } else {
        crate::context::apply_insurance(decision, uninsurable)
    };

    // Insure before allowing: PreToolUse runs before execution, so a backup
    // taken here is guaranteed to predate the command. Never for deny.
    //
    // LIVENESS PROBE (v0.15). `doctor` invokes the hook exactly as the agent
    // does, to prove it can actually run — see `doctor::hook_live`. A probe must
    // be inert: no backup, no audit entry, no state. It still evaluates policy
    // and answers, because answering is the thing being tested.
    //
    // Why this exists: `hook_configured` used to be a substring search for
    // "termaxa hook" in settings.json. A hook whose path did not resolve at exec
    // time failed non-blocking, the session ran ungated, and doctor reported
    // "configured" in green. Observed on Windows 2026-08-13.
    //
    // The env var ALONE must not switch off backups and the audit record —
    // for a tool whose pitch is the backup and the record, a single ambient
    // variable that silently disables both (direnv, a doctored launch
    // script) is a kill switch. So probe mode requires BOTH the variable and
    // the sentinel session id, and `doctor` is the only thing that sends the
    // sentinel. An agent command cannot set its harness's env; a leaked env
    // var without the sentinel changes nothing.
    let mut backup_id: Option<String> = None;
    if !is_probe && decision.action != Action::Deny {
        match crate::backup::take(&paths.state_dir, &command, std::path::Path::new(&input.cwd)) {
            Ok(Some(rec)) => backup_id = Some(rec.id),
            Ok(None) => {}
            // Best effort by default: the failure is not even reported here,
            // because a hook has no terminal to report to. Under
            // `backup_failure: deny` the verdict changes instead - an
            // unattended run has nobody to read a warning, and an uninsured
            // delete is the whole risk (#61 is the receipt).
            Err(e) if policy.backup_failure == crate::policy::BackupFailure::Deny => {
                decision = crate::policy::Decision {
                    action: Action::Deny,
                    matched_rule: decision.matched_rule.clone(),
                    reason: format!(
                        "insurance failed ({e}) and the policy sets `backup_failure: deny` \
                         — an uninsured command does not run"
                    ),
                    source: decision.source,
                };
            }
            Err(_) => {}
        }
    }

    // Audit first, decide second: even denied attempts are part of the record.
    // Except a probe, which must leave the record exactly as it found it.
    if !is_probe {
        if let Ok(log) = AuditLog::new(&paths.state_dir) {
            let (ts_ms, ts) = now();
            let _ = log.append(&AuditEntry {
                ts_ms,
                ts,
                source: "hook".into(),
                actor: Some(input.dialect.actor().to_string()),
                decided_by: Some(decision.source.as_str().to_string()),
                command: command.clone(),
                decision: decision.action.to_string(),
                matched_rule: decision.matched_rule.clone(),
                reason: decision.reason.clone(),
                signals: signals.iter().map(|s| s.label.clone()).collect(),
                escalated: escalated || uninsured_escalation,
                session: input.session.clone(),
                backup: backup_id.clone(),
                preview: preview_summary.clone(),
                intent: intent_label.clone(),
                approved: None,
                exit_code: None,
                cwd: input.cwd.clone(),
                // Filled by `append`, which links each entry to the one
                // before it.
                prev: None,
                hash: None,
            });
        }
    }

    // DECLINE RATHER THAN ALLOW (v0.15).
    //
    // A policy that merely fails to object is not the same as a policy that
    // deliberately blesses a command, and until now Termaxa said "allow" for
    // both. That is a false statement about our own confidence: for every
    // command no rule matched, we were asserting a verdict we had not formed.
    //
    // So: an explicit `action: allow` rule still emits allow, because someone
    // wrote it down on purpose. The default-allow path emits nothing and lets
    // the harness decide for itself.
    //
    // Suggested by Tim Schipper.
    let silent = is_silent(input.dialect, &decision);

    // Codex honours exactly one PreToolUse verdict: `deny`. An `ask` is
    // "unsupported permissionDecision:ask", which fails the hook and falls
    // open to Codex's own prompt - or to nothing at all under --full-auto.
    // So an ask is rendered as a deny whose reason says the gate asked and
    // how to proceed; the audit log records the ask the policy made.
    let codex_ask = input.dialect == Dialect::Codex && decision.action == Action::Ask;
    let permission = match decision.action {
        Action::Allow => "allow",
        Action::Ask if codex_ask => "deny",
        Action::Ask => "ask",
        Action::Deny => "deny",
    };

    let mut reason = if codex_ask {
        format!(
            "[termaxa] asks: {} — Codex cannot prompt from a hook, so this is refused; \
             add an allow rule to .termaxa/policy.yaml for this command, or run it yourself",
            decision.reason
        )
    } else {
        format!("[termaxa] {}", decision.reason)
    };
    if uninsured_escalation {
        // Named distinctly from context escalation: the record should say
        // WHICH amplifier fired, or a later reader cannot tell a signal-driven
        // ask from an uninsurable-driven deny.
        reason.push_str(" (uninsurable — escalated to deny)");
    } else if escalated {
        reason.push_str(" (context-escalated)");
    }
    if matches!(decision.action, Action::Ask | Action::Deny) {
        if let Some(s) = &preview_summary {
            reason.push_str(&format!(" | {}", s));
        }
    }
    if let Some(id) = &backup_id {
        reason.push_str(&format!(" | backup {}", id));
    }

    // A probe must not page anyone: with `notify.on: [deny]` configured,
    // every `termaxa doctor` run would otherwise post a "denied rm -rf /"
    // webhook per detected agent.
    if !is_probe {
        crate::notify::maybe_send(
            &policy,
            &decision.action.to_string(),
            &command,
            &decision.reason,
            "hook",
        );
    }

    // A probe must always answer — `doctor` reads the decision to prove the hook
    // can run at all, and silence is indistinguishable from a dead hook.
    let rendered = if !silent || is_probe {
        Some(render_response(input.dialect, permission, &reason))
    } else {
        None
    };

    Ok(Outcome {
        rendered,
        // Exit 2 is the belt under the JSON for Claude Code and Cursor. Not
        // for Codex: measured Sep 5, 2026, a Termaxa deny reached codex-cli
        // 0.153.4 on Windows as "hook exited with code 1" - the wrapper that
        // runs the hook flattens a non-zero exit to 1, and Codex treats any
        // exit other than 0 or 2 as a failed hook, which fails open. And not
        // for Copilot: measured Sep 9, 2026, a non-zero exit reached Copilot
        // CLI as `Denied by preToolUse hook ... (hook errored)` - the block
        // landed only because `failClosed: true` turns an error into a
        // denial, and the reason never reached the screen. For both, the
        // JSON on stdout is the documented channel and the exit code stays 0
        // so the JSON is read.
        exit_code: if decision.action == Action::Deny
            && !matches!(
                input.dialect,
                Dialect::Codex | Dialect::Copilot | Dialect::CopilotRepoSettings
            ) {
            2
        } else {
            0
        },
        audit_seq: None,
    })
}

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

    /// v0.15: a policy that merely fails to object must not claim to approve.
    /// The default-allow path emits nothing; an explicit allow rule still says
    /// allow, because someone wrote that rule on purpose.
    #[test]
    fn a_default_allow_is_silence_and_an_explicit_allow_is_not() {
        use crate::policy::{Action, Decision};

        let no_opinion = Decision {
            action: Action::Allow,
            // The typed form of the distinction this test already drew by
            // hand: `Default` IS "no opinion" (v0.16, roadmap 2.5).
            source: crate::policy::DecisionSource::Default,
            matched_rule: None,
            reason: "no rule matched; policy default is `allow`".into(),
        };
        let deliberate = Decision {
            action: Action::Allow,
            source: crate::policy::DecisionSource::ExplicitRule,
            matched_rule: Some("git status*".into()),
            reason: "matched rule `git status*`".into(),
        };

        assert!(
            is_silent(Dialect::ClaudeCode, &no_opinion),
            "an unmatched command must not be reported as approved"
        );
        assert!(
            !is_silent(Dialect::ClaudeCode, &deliberate),
            "an explicit allow rule is a deliberate blessing and must be emitted"
        );
        // Cursor and Copilot keep emitting: their empty-stdout semantics are
        // uncaptured, and Cursor has burned this project once already (3.11).
        assert!(!is_silent(Dialect::Cursor, &no_opinion));
        assert!(!is_silent(Dialect::Copilot, &no_opinion));
    }

    /// ask and deny always speak, whether or not a rule matched them.
    #[test]
    fn only_allow_can_ever_be_silent() {
        use crate::policy::{Action, Decision};
        for action in [Action::Ask, Action::Deny] {
            let d = Decision {
                action,
                source: crate::policy::DecisionSource::Default,
                matched_rule: None,
                reason: "default".into(),
            };
            assert!(
                !is_silent(Dialect::ClaudeCode, &d),
                "{action} must always be emitted"
            );
        }
    }

    #[test]
    fn cursor_real_payload_uses_workspace_roots_when_cwd_empty() {
        // The EXACT shape Cursor 3.10 sends on Windows: empty cwd, path in
        // workspace_roots as a URI, plus a UTF-8 BOM prefix.
        let raw = "\u{feff}{\"command\":\"rm -rf .cursor .git\",\"cwd\":\"\",\"hook_event_name\":\"beforeShellExecution\",\"workspace_roots\":[\"/c:/Users/User/code/proj\"],\"conversation_id\":\"c9\"}";
        let p = parse_input(raw).expect("must parse Cursor payload with BOM + empty cwd");
        assert_eq!(p.dialect, Dialect::Cursor);
        assert_eq!(p.command, "rm -rf .cursor .git");
        // cwd must be recovered from workspace_roots, normalized off the URI slash
        assert_eq!(p.cwd, "c:/Users/User/code/proj");
    }

    #[test]
    fn normalize_uri_path_handles_windows_and_unix() {
        assert_eq!(normalize_uri_path("/c:/Users/x"), "c:/Users/x");
        assert_eq!(normalize_uri_path("/home/user/proj"), "/home/user/proj"); // unix untouched
        assert_eq!(normalize_uri_path("c:/already/native"), "c:/already/native");
    }

    #[test]
    fn bom_prefixed_json_still_parses() {
        let raw = "\u{feff}{\"tool_name\":\"Bash\",\"tool_input\":{\"command\":\"ls\"}}";
        assert_eq!(parse_input(raw).unwrap().command, "ls");
    }

    #[test]
    fn detects_cursor_dialect() {
        let raw = r#"{"hook_event_name":"beforeShellExecution","command":"git push --force","cwd":"/w","conversation_id":"c-1"}"#;
        let p = parse_input(raw).unwrap();
        assert_eq!(p.dialect, Dialect::Cursor);
        assert_eq!(p.command, "git push --force");
        assert_eq!(p.session.as_deref(), Some("c-1"));
    }

    #[test]
    fn cursor_311_pretooluse_is_gated() {
        // The EXACT shape Cursor 3.11.25 sends on Windows (captured live).
        // Old parse_input matched none of this -> Termaxa silently no-op'd.
        let raw = r#"{"conversation_id":"758","tool_name":"Shell","tool_input":{"command":"git status","cwd":"C:\\Users\\User\\code\\p","timeout":30000},"cwd":"C:\\Users\\User\\code\\p","session_id":"758","hook_event_name":"preToolUse","cursor_version":"3.11.25","workspace_roots":["/C:/Users/User/code/p"]}"#;
        let p = parse_input(raw).expect("Cursor 3.11 preToolUse must be recognized");
        assert_eq!(p.dialect, Dialect::Cursor);
        assert_eq!(p.command, "git status");
        assert!(!p.is_post, "preToolUse must gate, not receipt");
        assert_eq!(p.session.as_deref(), Some("758"));
    }

    #[test]
    fn cursor_311_posttooluse_is_receipt() {
        let raw = r#"{"conversation_id":"758","tool_name":"Shell","tool_input":{"command":"git status","cwd":"C:\\Users\\User\\code\\p"},"tool_output":"{\"output\":\"\",\"exitCode\":0}","duration":174.96,"cwd":"C:\\Users\\User\\code\\p","session_id":"758","hook_event_name":"postToolUse","cursor_version":"3.11.25","workspace_roots":["/C:/Users/User/code/p"]}"#;
        let p = parse_input(raw).expect("Cursor 3.11 postToolUse must be recognized");
        assert_eq!(p.dialect, Dialect::Cursor);
        assert_eq!(p.command, "git status");
        assert!(p.is_post, "postToolUse must be a receipt");
    }

    #[test]
    fn cursor_311_empty_cwd_recovers_from_tool_input_or_roots() {
        // 3.11 sometimes sends empty top-level cwd; recover from tool_input.cwd
        // or workspace_roots.
        let raw = r#"{"conversation_id":"758","tool_name":"Shell","tool_input":{"command":"where.exe git","cwd":""},"cwd":"","session_id":"758","hook_event_name":"preToolUse","cursor_version":"3.11.25","workspace_roots":["/C:/Users/User/code/p"]}"#;
        let p = parse_input(raw).unwrap();
        assert_eq!(
            p.cwd, "C:/Users/User/code/p",
            "must recover cwd from workspace_roots"
        );
    }

    #[test]
    fn old_cursor_beforeshellexecution_still_works() {
        // Backward-compat: pre-3.11 Cursor must still be gated.
        let raw = "\u{feff}{\"command\":\"rm -rf .cursor .git\",\"cwd\":\"\",\"hook_event_name\":\"beforeShellExecution\",\"workspace_roots\":[\"/c:/Users/User/code/proj\"],\"conversation_id\":\"c9\"}";
        let p = parse_input(raw).unwrap();
        assert_eq!(p.dialect, Dialect::Cursor);
        assert_eq!(p.command, "rm -rf .cursor .git");
        assert!(!p.is_post);
    }

    #[test]
    fn detects_claude_dialect() {
        let raw = r#"{"tool_name":"Bash","tool_input":{"command":"git status"},"session_id":"s-1","cwd":"/w"}"#;
        let p = parse_input(raw).unwrap();
        assert_eq!(p.dialect, Dialect::ClaudeCode);
        assert_eq!(p.command, "git status");
    }

    #[test]
    fn detects_post_execution_events() {
        // Cursor afterShellExecution → receipt
        let cur = r#"{"hook_event_name":"afterShellExecution","command":"rm -rf ./cache","cwd":"/w","conversation_id":"c1"}"#;
        let p = parse_input(cur).unwrap();
        assert!(p.is_post);
        assert_eq!(p.dialect, Dialect::Cursor);
        assert_eq!(p.command, "rm -rf ./cache");

        // Claude PostToolUse → receipt
        let cc = r#"{"hook_event_name":"PostToolUse","tool_name":"Bash","tool_input":{"command":"git commit -m x"},"session_id":"s1"}"#;
        let p = parse_input(cc).unwrap();
        assert!(p.is_post);
        assert_eq!(p.dialect, Dialect::ClaudeCode);

        // Pre-events are NOT post
        let pre = r#"{"tool_name":"Bash","tool_input":{"command":"ls"}}"#;
        assert!(!parse_input(pre).unwrap().is_post);
    }

    #[test]
    fn ignores_unrelated_input() {
        assert!(parse_input(r#"{"hook_event_name":"afterFileEdit"}"#).is_none());
        assert!(parse_input("not json").is_none());
    }

    #[test]
    fn renders_each_dialect() {
        let c = render_response(Dialect::Cursor, "deny", "[termaxa] blocked");
        assert!(c.contains("\"permission\":\"deny\"") && c.contains("agent_message"));
        let cc = render_response(Dialect::ClaudeCode, "ask", "[termaxa] careful");
        assert!(cc.contains("hookSpecificOutput") && cc.contains("permissionDecision"));
    }

    #[test]
    fn detects_copilot_dialect() {
        let raw =
            r#"{"toolName":"shell","toolArgs":"{\"command\":\"rm -rf /\"}","sessionId":"cop-1"}"#;
        let p = parse_input(raw).unwrap();
        assert_eq!(p.dialect, Dialect::Copilot);
        assert_eq!(p.command, "rm -rf /");
        assert_eq!(p.session.as_deref(), Some("cop-1"));
    }

    #[test]
    fn copilot_accepts_inline_toolargs_object() {
        let raw = r#"{"toolName":"shell","toolArgs":{"command":"git status"}}"#;
        let p = parse_input(raw).unwrap();
        assert_eq!(p.dialect, Dialect::Copilot);
        assert_eq!(p.command, "git status");
    }

    #[test]
    fn detects_codex_dialect() {
        let raw = r#"{"hook_event_name":"PreToolUse","agent":"codex-cli","tool_input":{"command":"git push --force"}}"#;
        let p = parse_input(raw).unwrap();
        assert_eq!(p.dialect, Dialect::Codex);
        assert_eq!(p.command, "git push --force");
    }

    #[test]
    fn shared_shape_without_tag_defaults_to_claude() {
        let raw = r#"{"tool_name":"Bash","tool_input":{"command":"ls"}}"#;
        assert_eq!(parse_input(raw).unwrap().dialect, Dialect::ClaudeCode);
    }

    /// The payload Copilot CLI actually sent on Windows, captured live on
    /// Sep 9, 2026 with TERMAXA_HOOK_DEBUG. The tool is `powershell`, not
    /// `shell`; `toolArgs` is an inline object; `sessionId` and `timestamp`
    /// are camelCase and milliseconds; there is no hookEventName at all.
    #[test]
    fn copilot_on_windows_calls_its_shell_powershell() {
        let raw = r#"{"sessionId":"85a696df-84c3-4b99-95cd-4e076f2529d9","timestamp":1788992290306,"cwd":"C:\\Users\\User\\code\\capture-test","toolName":"powershell","toolArgs":{"command":"echo hi","description":"Print the requested greeting","mode":"sync","initial_wait":10}}"#;
        let p = parse_input(raw).expect("the live Copilot payload must parse");
        assert_eq!(p.dialect, Dialect::Copilot);
        assert_eq!(p.command, "echo hi");
        assert_eq!(
            p.session.as_deref(),
            Some("85a696df-84c3-4b99-95cd-4e076f2529d9")
        );
        assert!(!p.is_post);
        for tool in ["pwsh", "cmd"] {
            let raw = format!(r#"{{"toolName":"{tool}","toolArgs":{{"command":"rm -rf /"}}}}"#);
            assert!(parse_input(&raw).is_some(), "{tool} is a shell tool too");
        }
    }

    /// Copilot CLI running the `.claude/settings.json` hooks ("repo
    /// settings"), captured live Sep 9, 2026. Claude Code's shape, both
    /// events, a string `timestamp`, no `transcript_path`. It is Copilot:
    /// audited as such, answered in Claude's shape, and a deny exits 0
    /// because Copilot read exit 2 on this path as "(hook errored)" too.
    #[test]
    fn copilot_through_repo_settings_is_copilot_in_claudes_shape() {
        let pre = r#"{"hook_event_name":"PreToolUse","session_id":"a98e1665-3dab-4281-8c73-25659c0fbab7","timestamp":"2026-09-09T22:52:28.560Z","cwd":"C:\\Users\\User\\code\\capture-test","tool_name":"Bash","tool_input":{"command":"Remove-Item -LiteralPath scratch -Recurse -Force","description":"Delete the scratch directory"}}"#;
        let p = parse_input(pre).expect("the live payload must parse");
        assert_eq!(p.dialect, Dialect::CopilotRepoSettings);
        assert_eq!(p.dialect.actor(), "copilot");
        assert!(!p.is_post);
        assert_eq!(
            p.session.as_deref(),
            Some("a98e1665-3dab-4281-8c73-25659c0fbab7")
        );

        let post = r#"{"hook_event_name":"PostToolUse","session_id":"a98e1665","timestamp":"2026-09-09T22:52:07.017Z","cwd":"C:\\x","tool_name":"Bash","tool_input":{"command":"echo hi"},"tool_result":{"result_type":"success","text_result_for_llm":"hi\n"}}"#;
        let p = parse_input(post).expect("post must parse");
        assert_eq!(p.dialect, Dialect::CopilotRepoSettings);
        assert!(
            p.is_post,
            "PostToolUse arrives on this path; receipts exist under Copilot here"
        );

        // Claude Code itself: a transcript, no timestamp - untouched.
        let claude = r#"{"hook_event_name":"PreToolUse","session_id":"s","transcript_path":"/home/u/.claude/projects/x/s.jsonl","cwd":"/repo","tool_name":"Bash","tool_input":{"command":"rm -rf ./x"}}"#;
        assert_eq!(parse_input(claude).unwrap().dialect, Dialect::ClaudeCode);

        // The answer is Claude's shape.
        let r = render_response(Dialect::CopilotRepoSettings, "deny", "[termaxa] no");
        assert!(r.contains("hookSpecificOutput") && r.contains("\"permissionDecision\":\"deny\""));
    }

    #[test]
    fn copilot_render_is_unwrapped() {
        let r = render_response(Dialect::Copilot, "deny", "[termaxa] no");
        assert!(r.contains("permissionDecision") && !r.contains("hookSpecificOutput"));
    }

    // ---- file-write tools ----------------------------------------------
    //
    // The half of self-defence the shell rules cannot reach. Every case here
    // is named for the situation it came from rather than for the function it
    // calls.

    /// What Termaxa would decide, given a raw payload: the deny reason, or
    /// `None` for "no decision, leave the harness alone".
    fn verdict(raw: &str) -> Option<&'static str> {
        let w = parse_file_write(raw)?;
        crate::protect::classify(&w.cwd, &w.path).map(|p| p.what)
    }

    fn write_payload(tool: &str, path: &str) -> String {
        json!({
            "session_id": "s-1",
            "cwd": "/repo",
            "hook_event_name": "PreToolUse",
            "tool_name": tool,
            "tool_input": { "file_path": path, "content": "default: allow\n" }
        })
        .to_string()
    }

    /// Field report, 2026-08-12: an agent hit the `rm -rf` deny, reasoned five
    /// seconds later that dropping `-rf` made the command equivalent, and
    /// retried. Same instinct one tool over is a `Write` at the policy that
    /// denied it, and until this matcher existed the shell rules could not see
    /// it.
    #[test]
    fn the_write_tool_no_longer_routes_around_a_shell_deny() {
        assert_eq!(
            verdict(&write_payload("Write", "/repo/.termaxa/policy.yaml")),
            Some("termaxa-state")
        );
        assert_eq!(
            verdict(&write_payload("Edit", "/repo/.claude/settings.json")),
            Some("agent-hook-config")
        );
    }

    /// The tools Claude Code ships, including the one whose path field is
    /// spelled differently.
    #[test]
    fn every_write_tool_is_recognised_including_notebooks() {
        for tool in ["Write", "Edit", "MultiEdit"] {
            assert_eq!(
                verdict(&write_payload(tool, "/repo/.termaxa/policy.yaml")),
                Some("termaxa-state"),
                "{tool}"
            );
        }
        let nb = json!({
            "cwd": "/repo",
            "hook_event_name": "PreToolUse",
            "tool_name": "NotebookEdit",
            "tool_input": { "notebook_path": "/repo/.termaxa/policy.yaml" }
        })
        .to_string();
        assert_eq!(verdict(&nb), Some("termaxa-state"));
    }

    /// An ordinary edit must produce no decision at all, not an `allow`.
    /// Asserting `allow` on every file an agent writes would be Termaxa
    /// answering a question it has no way to form an opinion about, and at the
    /// harness boundary an `allow` is an answer, not a shrug.
    #[test]
    fn an_ordinary_edit_gets_no_decision_rather_than_an_allow() {
        let raw = write_payload("Edit", "/repo/src/main.rs");
        let w = parse_file_write(&raw).expect("still parses as a write event");
        assert_eq!(crate::protect::classify(&w.cwd, &w.path), None);
    }

    /// Reading the policy is allowed on the shell path (`cat .termaxa*` is an
    /// explicit allow in the starter policy), so a read tool must not be
    /// caught here either. `Read` carries the same `file_path` field as
    /// `Write`, so only the verb separates them.
    #[test]
    fn read_tools_are_left_alone_even_on_a_protected_path() {
        let raw = json!({
            "cwd": "/repo",
            "hook_event_name": "PreToolUse",
            "tool_name": "Read",
            "tool_input": { "file_path": "/repo/.termaxa/policy.yaml" }
        })
        .to_string();
        assert!(parse_file_write(&raw).is_none());
    }

    /// A rename within the same vocabulary keeps its coverage. This is the
    /// failure Cursor 3.11 caused on the shell side, where an exact-name check
    /// stopped matching and the gate went quiet.
    #[test]
    fn a_renamed_write_tool_still_matches_by_verb() {
        for tool in [
            "write_file",
            "edit_file",
            "create_file",
            "apply_patch",
            "str_replace_editor",
        ] {
            assert_eq!(
                verdict(&write_payload(tool, "/repo/.termaxa/policy.yaml")),
                Some("termaxa-state"),
                "{tool}"
            );
        }
    }

    #[test]
    fn a_shell_payload_stays_on_the_shell_path() {
        // `parse_input` handles it, and `parse_file_write` must not also claim
        // it — the write path has no policy engine behind it.
        let raw = r#"{"tool_name":"Bash","tool_input":{"command":"rm -rf .termaxa"}}"#;
        assert!(parse_input(raw).is_some());
        assert!(parse_file_write(raw).is_none());
    }

    #[test]
    fn a_write_that_already_happened_is_not_gated() {
        let raw = json!({
            "cwd": "/repo",
            "hook_event_name": "PostToolUse",
            "tool_name": "Write",
            "tool_input": { "file_path": "/repo/.termaxa/policy.yaml" }
        })
        .to_string();
        assert!(parse_file_write(&raw).is_none());
    }

    #[test]
    fn a_write_event_with_no_target_path_is_not_one() {
        let raw =
            r#"{"hook_event_name":"PreToolUse","tool_name":"Write","tool_input":{"content":"x"}}"#;
        assert!(parse_file_write(raw).is_none());
        let empty =
            r#"{"hook_event_name":"PreToolUse","tool_name":"Write","tool_input":{"file_path":""}}"#;
        assert!(parse_file_write(empty).is_none());
    }

    /// Copilot delivers tool arguments as a JSON string rather than an object,
    /// the same shape the shell path already has to unwrap.
    #[test]
    fn copilot_string_encoded_arguments_are_unwrapped() {
        let raw = json!({
            "toolName": "create_file",
            "toolArgs": r#"{"path":"/repo/.github/hooks/hooks.json"}"#,
            "workingDirectory": "/repo"
        })
        .to_string();
        let w = parse_file_write(&raw).expect("copilot write must parse");
        assert_eq!(w.dialect, Dialect::Copilot);
        assert_eq!(
            crate::protect::classify(&w.cwd, &w.path).map(|p| p.what),
            Some("agent-hook-config")
        );
    }

    /// A payload with a BOM and a relative path, which is the combination the
    /// Cursor field reports arrive in.
    #[test]
    fn a_bom_prefixed_write_with_a_relative_path_still_resolves() {
        let raw = format!(
            "\u{feff}{}",
            json!({
                "hook_event_name": "preToolUse",
                "cursor_version": "3.11.25",
                "conversation_id": "c-9",
                "tool_name": "Edit",
                "tool_input": { "file_path": ".termaxa/policy.yaml" },
                "workspace_roots": ["/c:/Users/User/code/proj"]
            })
        );
        let w = parse_file_write(&raw).expect("cursor write must parse");
        assert_eq!(w.dialect, Dialect::Cursor);
        assert_eq!(w.cwd, "c:/Users/User/code/proj");
        assert_eq!(
            crate::protect::classify(&w.cwd, &w.path).map(|p| p.what),
            Some("termaxa-state")
        );
    }
}