harn-vm 0.7.48

Async bytecode virtual machine for the Harn programming language
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
//! Tool-dispatch phase.
//!
//! Runs once per iteration after `run_llm_call` populates
//! `LlmCallResult.tool_calls`, but only when the list is non-empty.
//! The phase:
//!
//!   1. Appends the assistant turn message to the conversation
//!      (native or text-mode shape depending on `tool_format`).
//!   2. Builds a parallel-dispatch cache for the leading read-only
//!      prefix of tool calls via `join_all`, so read/lookup/search
//!      batches finish in parallel-latency time.
//!   3. For each tool call, sequentially: detect `__parse_error`
//!      sentinels from malformed provider arguments and reject;
//!      enforce the current execution policy + arg constraints; run
//!      the declarative approval policy (auto-approve / auto-deny /
//!      `session/request_permission` host bridge); run in-process
//!      PreToolUse hooks (Allow / Deny / Modify); validate required
//!      arguments; emit `tool_intent` + `ToolCall` (Pending /
//!      InProgress) events and a `tool_call` tracing span; run the
//!      loop-detect check (skip if stuck); dispatch the tool (replay
//!      fixture, parallel cache, or a fresh `dispatch_tool_execution`);
//!      track `run` exit codes for the verification gate; microcompact
//!      oversized tool output; run in-process PostToolUse hooks; emit
//!      a final `ToolCallUpdate` event and close the tracing span;
//!      record to the tool-recording mock when active; run loop-detect
//!      `record()` and optionally append or replace the result with a
//!      redirect hint; append the `tool_execution` transcript event
//!      and tool-result message (or an observation line for text-mode).
//!   4. Returns `ToolDispatchResult` carrying `tools_used_this_iter`,
//!      `tool_results_this_iter`, and the accumulated `observations`
//!      string — the post-turn phase flushes these into the
//!      conversation before the next LLM call.

use std::rc::Rc;

use crate::agent_events::{AgentEvent, ToolCallErrorCategory, ToolCallStatus, ToolExecutor};
use crate::bridge::HostBridge;
use crate::value::{ErrorCategory, VmError, VmValue};

use super::super::agent_tools::{
    classify_tool_mutation, declared_paths, denied_tool_result, dispatch_tool_execution,
    is_denied_tool_result, loop_intervention_message, render_tool_result, stable_hash,
    stable_hash_str, LoopIntervention, ToolDispatchOutcome,
};
use super::super::helpers::transcript_event;
use super::super::tools::{
    build_assistant_tool_message, build_tool_result_message, collect_tool_schemas,
    normalize_tool_args, validate_tool_args,
};
use super::helpers::{append_message_to_contexts, assistant_history_text};
use super::llm_call::LlmCallResult;
use super::state::AgentLoopState;

const REQUIRE_SIGNED_SKILLS_ENV: &str = "HARN_REQUIRE_SIGNED_SKILLS";

pub(super) struct ToolDispatchContext<'a> {
    pub bridge: &'a Option<Rc<HostBridge>>,
    pub tool_format: &'a str,
    pub tools_val: Option<&'a VmValue>,
    pub tool_retries: usize,
    pub tool_backoff_ms: u64,
    pub loop_detect_enabled: bool,
    pub session_id: &'a str,
    pub iteration: usize,
    pub exit_when_verified: bool,
    pub auto_compact: &'a Option<crate::orchestration::AutoCompactConfig>,
}

pub(super) struct ToolDispatchResult {
    pub tools_used_this_iter: Vec<String>,
    pub tool_results_this_iter: Vec<serde_json::Value>,
    pub observations: String,
}

fn runtime_tool_error(error: &str, skill: &str, message: impl Into<String>) -> String {
    serde_json::to_string_pretty(&serde_json::json!({
        "error": error,
        "skill": skill,
        "message": message.into(),
    }))
    .unwrap_or_else(|_| format!("{{\"error\":\"{error}\",\"skill\":\"{skill}\"}}"))
}

#[derive(Default)]
struct RuntimeSkillProvenance {
    signed: bool,
    trusted: bool,
    signer_fingerprint: Option<String>,
    require_signature: bool,
    trusted_signers: Vec<String>,
    error: Option<String>,
}

fn env_requires_signed_skills() -> bool {
    matches!(
        std::env::var(REQUIRE_SIGNED_SKILLS_ENV)
            .ok()
            .map(|value| value.trim().to_ascii_lowercase()),
        Some(value) if value == "1" || value == "true" || value == "yes"
    )
}

fn runtime_provenance(
    entry: &std::collections::BTreeMap<String, VmValue>,
) -> RuntimeSkillProvenance {
    let mut provenance = RuntimeSkillProvenance {
        require_signature: entry
            .get("require_signature")
            .and_then(|value| match value {
                VmValue::Bool(value) => Some(*value),
                _ => None,
            })
            .unwrap_or(false),
        trusted_signers: entry
            .get("trusted_signers")
            .and_then(|value| match value {
                VmValue::List(values) => Some(
                    values
                        .iter()
                        .filter_map(|value| match value {
                            VmValue::String(value) => Some(value.to_string()),
                            _ => None,
                        })
                        .collect(),
                ),
                _ => None,
            })
            .unwrap_or_default(),
        ..RuntimeSkillProvenance::default()
    };
    let Some(inner) = entry.get("provenance").and_then(VmValue::as_dict) else {
        return provenance;
    };
    provenance.signed = inner
        .get("signed")
        .and_then(|value| match value {
            VmValue::Bool(value) => Some(*value),
            _ => None,
        })
        .unwrap_or(false);
    provenance.trusted = inner
        .get("trusted")
        .and_then(|value| match value {
            VmValue::Bool(value) => Some(*value),
            _ => None,
        })
        .unwrap_or(false);
    provenance.signer_fingerprint = inner
        .get("signer_fingerprint")
        .and_then(|value| match value {
            VmValue::String(value) => Some(value.to_string()),
            _ => None,
        });
    provenance.error = inner.get("error").and_then(|value| match value {
        VmValue::String(value) => Some(value.to_string()),
        _ => None,
    });
    provenance
}

fn emit_skill_loaded_record(
    state: &mut AgentLoopState,
    skill_id: &str,
    provenance: &RuntimeSkillProvenance,
) {
    state.transcript_events.push(transcript_event(
        "skill.loaded",
        "system",
        "internal",
        skill_id,
        Some(serde_json::json!({
            "skill_id": skill_id,
            "signer_fingerprint": provenance.signer_fingerprint,
            "signed": provenance.signed,
            "trusted": provenance.trusted,
        })),
    ));
}

fn apply_loaded_skill_prompt(state: &mut AgentLoopState, entry: &VmValue, prompt: String) {
    let mut active = super::state::ActiveSkill::from_entry(entry);
    active.prompt = if prompt.trim().is_empty() {
        None
    } else {
        Some(prompt)
    };

    if let Some(existing) = state
        .active_skills
        .iter_mut()
        .find(|skill| skill.name == active.name)
    {
        *existing = active.clone();
    }
    if let Some(existing) = state
        .loaded_skills
        .iter_mut()
        .find(|skill| skill.name == active.name)
    {
        *existing = active;
    } else {
        state.loaded_skills.push(active);
    }
}

fn execute_runtime_load_skill(
    state: &mut AgentLoopState,
    requested: &str,
    require_signature: bool,
    session_id: &str,
) -> String {
    let registry = match state.skill_registry.as_ref() {
        Some(registry) => registry.clone(),
        None => {
            return runtime_tool_error(
                "skill_registry_unavailable",
                requested,
                "load_skill requires agent_loop to receive a `skills:` registry",
            )
        }
    };

    let entry = match crate::skills::resolve_skill_entry(&registry, requested, "load_skill") {
        Ok(entry) => entry,
        Err(message) => return runtime_tool_error("skill_not_found", requested, message),
    };
    let entry_value = VmValue::Dict(Rc::new(entry.clone()));
    let active = super::state::ActiveSkill::from_entry(&entry_value);
    let skill_id = crate::skills::skill_entry_id(&entry);
    let provenance = runtime_provenance(&entry);
    emit_skill_loaded_record(state, &skill_id, &provenance);

    if active.disable_model_invocation {
        return runtime_tool_error(
            "skill_model_invocation_disabled",
            &skill_id,
            format!("skill '{skill_id}' is gated to explicit user invocation"),
        );
    }
    let signature_required = require_signature
        || env_requires_signed_skills()
        || provenance.require_signature
        || !provenance.trusted_signers.is_empty();
    if signature_required && !provenance.signed {
        return runtime_tool_error(
            "UnsignedSkillError",
            &skill_id,
            provenance
                .error
                .unwrap_or_else(|| format!("skill '{skill_id}' is missing a valid signature")),
        );
    }
    if signature_required && !provenance.trusted {
        let signer = provenance
            .signer_fingerprint
            .unwrap_or_else(|| "unknown".to_string());
        return runtime_tool_error(
            "UntrustedSignerError",
            &skill_id,
            provenance.error.unwrap_or_else(|| {
                format!("skill '{skill_id}' was signed by untrusted signer {signer}")
            }),
        );
    }

    let binding = crate::skills::current_skill_registry();
    let loaded = match crate::skills::load_skill_from_registry(
        &registry,
        binding.as_ref().map(|bound| &bound.fetcher),
        requested,
        Some(session_id),
        "load_skill",
    ) {
        Ok(loaded) => loaded,
        Err(message) => return runtime_tool_error("skill_not_found", requested, message),
    };
    let entry_value = VmValue::Dict(Rc::new(loaded.entry));
    apply_loaded_skill_prompt(state, &entry_value, loaded.rendered_body.clone());
    loaded.rendered_body
}

pub(super) async fn run_tool_dispatch(
    state: &mut AgentLoopState,
    opts: &mut super::super::api::LlmCallOptions,
    ctx: &ToolDispatchContext<'_>,
    call_result: &LlmCallResult,
) -> Result<ToolDispatchResult, VmError> {
    let tool_calls = &call_result.tool_calls;
    let text = &call_result.text;
    let iteration = ctx.iteration;

    state.consecutive_text_only = 0;
    state.idle_backoff_ms = 100;
    if ctx.tool_format == "native" {
        append_message_to_contexts(
            &mut state.visible_messages,
            &mut state.recorded_messages,
            build_assistant_tool_message(text, tool_calls, &opts.provider),
        );
    } else {
        let assistant_content_for_history = assistant_history_text(
            call_result.canonical_history.as_deref(),
            text,
            call_result.tool_parse_errors.len(),
            tool_calls,
        );
        append_message_to_contexts(
            &mut state.visible_messages,
            &mut state.recorded_messages,
            serde_json::json!({
                "role": "assistant",
                "content": assistant_content_for_history,
            }),
        );
    }

    let mut observations = String::new();
    let mut tools_used_this_iter: Vec<String> = Vec::new();
    let mut tool_results_this_iter: Vec<serde_json::Value> = Vec::new();
    let tool_schemas = collect_tool_schemas(ctx.tools_val, opts.native_tools.as_deref());

    // Parallel pre-fetch for a leading run of read-only tools. Sequential
    // dispatch still runs all bookkeeping (policy, hooks, transcript,
    // ordering) and only reuses the cached result when the hook path
    // would have called the tool anyway. Unannotated tools are treated
    // as NOT read-only (fail-safe).
    let ro_prefix_len: usize = tool_calls
        .iter()
        .position(|tc| {
            let name = tc["name"].as_str().unwrap_or("");
            !crate::orchestration::current_tool_annotations(name)
                .map(|a| a.kind.is_read_only())
                .unwrap_or(false)
        })
        .unwrap_or(tool_calls.len());
    let parallel_indices: Vec<usize> = if ro_prefix_len >= 2 {
        (0..ro_prefix_len).collect()
    } else {
        Vec::new()
    };
    let mut parallel_results: std::collections::HashMap<
        usize,
        (Result<serde_json::Value, VmError>, Option<ToolExecutor>),
    > = std::collections::HashMap::new();
    if !parallel_indices.is_empty() {
        // Use raw pre-hook tool_args; re-running a read-only tool when
        // a hook modifies/denies is at worst wasted work.
        use futures::future::join_all;
        let futures = parallel_indices.iter().map(|&idx| {
            let tc = tool_calls[idx].clone();
            let tool_name = tc["name"].as_str().unwrap_or("").to_string();
            let tool_args = normalize_tool_args(&tool_name, &tc["arguments"]);
            let tool_retries_local = ctx.tool_retries;
            let tool_backoff_ms_local = ctx.tool_backoff_ms;
            let bridge_local = ctx.bridge.clone();
            let tools_val_local = ctx.tools_val.cloned();
            async move {
                dispatch_tool_execution(
                    &tool_name,
                    &tool_args,
                    tools_val_local.as_ref(),
                    bridge_local.as_ref(),
                    tool_retries_local,
                    tool_backoff_ms_local,
                )
                .await
            }
        });
        let joined: Vec<ToolDispatchOutcome> = join_all(futures).await;
        for (i, idx) in parallel_indices.iter().enumerate() {
            let outcome = &joined[i];
            parallel_results.insert(*idx, (outcome.result.clone(), outcome.executor.clone()));
        }
    }

    for (tc_index, tc) in tool_calls.iter().enumerate() {
        let tool_id = tc["id"].as_str().unwrap_or("");
        let tool_name = tc["name"].as_str().unwrap_or("");
        let mut tool_args = normalize_tool_args(tool_name, &tc["arguments"]);

        // Client-mode tool_search (harn#70): intercept the synthetic
        // `__harn_tool_search` call before any normal policy / hook /
        // dispatch machinery runs. Its handler runs the configured
        // strategy against the deferred-tool index, promotes the
        // matching tools onto opts.native_tools for the next turn, and
        // emits the `tool_search_query` / `tool_search_result`
        // transcript events that replay treats as indistinguishable
        // from the Anthropic native path.
        let is_client_search = state
            .tool_search_client
            .as_ref()
            .is_some_and(|c| c.synthetic_name == tool_name);
        if is_client_search {
            let result_text = super::tool_search_client::handle_client_tool_search(
                state, opts, ctx.bridge, tool_id, &tool_args,
            )
            .await?;
            tools_used_this_iter.push(tool_name.to_string());
            tool_results_this_iter.push(serde_json::json!({
                "tool_name": tool_name,
                "status": "ok",
                "rejected": false,
            }));
            if ctx.tool_format == "native" {
                append_message_to_contexts(
                    &mut state.visible_messages,
                    &mut state.recorded_messages,
                    build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
                );
            } else {
                observations.push_str(&format!(
                    "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                ));
            }
            continue;
        }

        if tool_name == "load_skill" {
            let requested = tool_args
                .get("name")
                .and_then(|value| value.as_str())
                .map(str::trim)
                .unwrap_or("");
            let require_signature = match tool_args.get("require_signature") {
                Some(serde_json::Value::Bool(value)) => *value,
                Some(_) => {
                    let result_text = runtime_tool_error(
                        "invalid_arguments",
                        requested,
                        "load_skill `require_signature` must be a boolean",
                    );
                    tools_used_this_iter.push(tool_name.to_string());
                    tool_results_this_iter.push(serde_json::json!({
                        "tool_name": tool_name,
                        "status": "error",
                        "rejected": false,
                    }));
                    state.transcript_events.push(transcript_event(
                        "tool_execution",
                        "tool",
                        "internal",
                        &result_text,
                        Some(serde_json::json!({
                            "tool_name": tool_name,
                            "tool_use_id": tool_id,
                            "rejected": false,
                        })),
                    ));
                    if ctx.tool_format == "native" {
                        append_message_to_contexts(
                            &mut state.visible_messages,
                            &mut state.recorded_messages,
                            build_tool_result_message(
                                tool_id,
                                tool_name,
                                &result_text,
                                &opts.provider,
                            ),
                        );
                    } else {
                        observations.push_str(&format!(
                            "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                        ));
                    }
                    continue;
                }
                None => false,
            };
            let result_text = if requested.is_empty() {
                runtime_tool_error(
                    "invalid_arguments",
                    "",
                    "load_skill requires a non-empty `name` argument",
                )
            } else {
                execute_runtime_load_skill(state, requested, require_signature, ctx.session_id)
            };
            let status = if result_text.starts_with('{') && result_text.contains("\"error\"") {
                "error"
            } else {
                "ok"
            };
            tools_used_this_iter.push(tool_name.to_string());
            tool_results_this_iter.push(serde_json::json!({
                "tool_name": tool_name,
                "status": status,
                "rejected": false,
            }));
            state.transcript_events.push(transcript_event(
                "tool_execution",
                "tool",
                "internal",
                &result_text,
                Some(serde_json::json!({
                    "tool_name": tool_name,
                    "tool_use_id": tool_id,
                    "rejected": false,
                })),
            ));
            if ctx.tool_format == "native" {
                append_message_to_contexts(
                    &mut state.visible_messages,
                    &mut state.recorded_messages,
                    build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
                );
            } else {
                observations.push_str(&format!(
                    "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                ));
            }
            continue;
        }

        // Hoisted before any failure check so early-exit paths (parse
        // error, policy denial, schema validation, permission denial,
        // hook deny) can emit a `ToolCall(Pending)` + `ToolCallUpdate(
        // Failed, error_category=...)` pair. Clients that today saw
        // nothing for these failures now get a structured failure event.
        // Synthetic dispatchers above this point (`is_client_search`,
        // `load_skill`) intentionally bypass this — they have their
        // own observation paths.
        let tool_call_id = if tool_id.is_empty() {
            format!("tool-iter-{iteration}-{tc_index}")
        } else {
            format!("tool-{tool_id}")
        };
        let tool_kind = crate::orchestration::current_tool_annotations(tool_name).map(|a| a.kind);
        let tool_audit = crate::orchestration::current_mutation_session();
        super::emit_agent_event(&AgentEvent::ToolCall {
            session_id: ctx.session_id.to_string(),
            tool_call_id: tool_call_id.clone(),
            tool_name: tool_name.to_string(),
            kind: tool_kind,
            status: ToolCallStatus::Pending,
            raw_input: tool_args.clone(),
            parsing: None,
            audit: tool_audit.clone(),
        })
        .await;

        if let Some(parse_err) = tool_args.get("__parse_error").and_then(|v| v.as_str()) {
            let result_text = format!("ERROR: {parse_err}");
            state.transcript_events.push(transcript_event(
                "tool_execution",
                "tool",
                "internal",
                &result_text,
                Some(serde_json::json!({
                    "tool_name": tool_name,
                    "tool_use_id": tool_id,
                    "rejected": true,
                    "error_category": ToolCallErrorCategory::SchemaValidation.as_str(),
                })),
            ));
            super::emit_agent_event(&AgentEvent::ToolCallUpdate {
                session_id: ctx.session_id.to_string(),
                tool_call_id: tool_call_id.clone(),
                tool_name: tool_name.to_string(),
                status: ToolCallStatus::Failed,
                raw_output: None,
                error: Some(parse_err.to_string()),
                duration_ms: None,
                execution_duration_ms: None,
                error_category: Some(ToolCallErrorCategory::SchemaValidation),
                executor: None,
                parsing: None,

                raw_input: None,
                raw_input_partial: None,
                audit: tool_audit.clone(),
            })
            .await;
            if ctx.tool_format == "native" {
                append_message_to_contexts(
                    &mut state.visible_messages,
                    &mut state.recorded_messages,
                    build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
                );
            } else {
                observations.push_str(&format!(
                    "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                ));
            }
            continue;
        }

        let policy_result = crate::orchestration::enforce_current_policy_for_tool(tool_name)
            .and_then(|_| {
                crate::orchestration::enforce_tool_arg_constraints(
                    &crate::orchestration::current_execution_policy().unwrap_or_default(),
                    tool_name,
                    &tool_args,
                )
            });
        if let Err(error) = policy_result {
            let error_message = error.to_string();
            let result_text = render_tool_result(&denied_tool_result(
                tool_name,
                format!(
                    "{error}. Use one of the declared tools exactly as named and put extra fields inside that tool's arguments."
                ),
            ));
            if !state.rejected_tools.contains(&tool_name.to_string()) {
                state.rejected_tools.push(tool_name.to_string());
            }
            state
                .transcript_events
                .push(crate::llm::permissions::permission_transcript_event(
                    "PermissionDeny",
                    tool_name,
                    &tool_args,
                    &error_message,
                    false,
                ));
            state.transcript_events.push(transcript_event(
                "tool_execution",
                "tool",
                "internal",
                &result_text,
                Some(serde_json::json!({
                    "tool_name": tool_name,
                    "tool_use_id": tool_id,
                    "rejected": true,
                    "arguments": tool_args.clone(),
                    "error_category": ToolCallErrorCategory::PermissionDenied.as_str(),
                })),
            ));
            super::emit_agent_event(&AgentEvent::ToolCallUpdate {
                session_id: ctx.session_id.to_string(),
                tool_call_id: tool_call_id.clone(),
                tool_name: tool_name.to_string(),
                status: ToolCallStatus::Failed,
                raw_output: None,
                error: Some(error_message),
                duration_ms: None,
                execution_duration_ms: None,
                error_category: Some(ToolCallErrorCategory::PermissionDenied),
                executor: None,
                parsing: None,

                raw_input: None,
                raw_input_partial: None,
                audit: tool_audit.clone(),
            })
            .await;
            if ctx.tool_format == "native" {
                append_message_to_contexts(
                    &mut state.visible_messages,
                    &mut state.recorded_messages,
                    build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
                );
            } else {
                observations.push_str(&format!(
                    "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                ));
            }
            continue;
        }

        if let Some(permission) = crate::llm::permissions::check_dynamic_permission(
            &mut state.permission_session_grants,
            tool_name,
            &tool_args,
            ctx.session_id,
        )
        .await?
        {
            match permission {
                crate::llm::permissions::PermissionCheck::Granted { reason, escalated } => {
                    if escalated {
                        state.transcript_events.push(
                            crate::llm::permissions::permission_transcript_event(
                                "PermissionEscalation",
                                tool_name,
                                &tool_args,
                                &reason,
                                true,
                            ),
                        );
                    }
                    state.transcript_events.push(
                        crate::llm::permissions::permission_transcript_event(
                            "PermissionGrant",
                            tool_name,
                            &tool_args,
                            &reason,
                            escalated,
                        ),
                    );
                }
                crate::llm::permissions::PermissionCheck::Denied { reason, escalated } => {
                    if escalated {
                        state.transcript_events.push(
                            crate::llm::permissions::permission_transcript_event(
                                "PermissionEscalation",
                                tool_name,
                                &tool_args,
                                &reason,
                                true,
                            ),
                        );
                    }
                    state.transcript_events.push(
                        crate::llm::permissions::permission_transcript_event(
                            "PermissionDeny",
                            tool_name,
                            &tool_args,
                            &reason,
                            escalated,
                        ),
                    );
                    let denial_reason = reason.clone();
                    let result_text = render_tool_result(&denied_tool_result(tool_name, reason));
                    if !state.rejected_tools.contains(&tool_name.to_string()) {
                        state.rejected_tools.push(tool_name.to_string());
                    }
                    state.transcript_events.push(transcript_event(
                        "tool_execution",
                        "tool",
                        "internal",
                        &result_text,
                        Some(serde_json::json!({
                            "tool_name": tool_name,
                            "tool_use_id": tool_id,
                            "rejected": true,
                            "arguments": tool_args.clone(),
                            "permission": "denied",
                            "escalated": escalated,
                            "error_category": ToolCallErrorCategory::PermissionDenied.as_str(),
                        })),
                    ));
                    super::emit_agent_event(&AgentEvent::ToolCallUpdate {
                        session_id: ctx.session_id.to_string(),
                        tool_call_id: tool_call_id.clone(),
                        tool_name: tool_name.to_string(),
                        status: ToolCallStatus::Failed,
                        raw_output: None,
                        error: Some(denial_reason),
                        duration_ms: None,
                        execution_duration_ms: None,
                        error_category: Some(ToolCallErrorCategory::PermissionDenied),
                        executor: None,
                        parsing: None,

                        raw_input: None,
                        raw_input_partial: None,
                        audit: tool_audit.clone(),
                    })
                    .await;
                    if ctx.tool_format == "native" {
                        append_message_to_contexts(
                            &mut state.visible_messages,
                            &mut state.recorded_messages,
                            build_tool_result_message(
                                tool_id,
                                tool_name,
                                &result_text,
                                &opts.provider,
                            ),
                        );
                    } else {
                        observations.push_str(&format!(
                            "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                        ));
                    }
                    continue;
                }
            }
        }

        let approval_decision = crate::orchestration::current_approval_policy()
            .map(|policy| policy.evaluate(tool_name, &tool_args));
        let approval_outcome = match approval_decision {
            None | Some(crate::orchestration::ToolApprovalDecision::AutoApproved) => Ok(None),
            Some(crate::orchestration::ToolApprovalDecision::AutoDenied { reason }) => {
                Err(("auto_denied", reason))
            }
            Some(crate::orchestration::ToolApprovalDecision::RequiresHostApproval) => {
                // ACP `session/request_permission`. Fail closed: host
                // errors / missing method → deny.
                if let Some(bridge) = ctx.bridge.as_ref() {
                    let mutation = crate::orchestration::current_mutation_session();
                    let payload = serde_json::json!({
                        "sessionId": ctx.session_id,
                        "toolCall": {
                            "toolCallId": tool_id,
                            "toolName": tool_name,
                            "rawInput": tool_args,
                        },
                        "mutation": mutation,
                        "declaredPaths": declared_paths(tool_name, &tool_args),
                        "declaredPathEntries": crate::orchestration::current_tool_declared_path_entries(tool_name, &tool_args),
                    });
                    match bridge.call("session/request_permission", payload).await {
                        Ok(response) => {
                            let outcome = response
                                .get("outcome")
                                .and_then(|v| v.get("outcome"))
                                .and_then(|v| v.as_str())
                                .or_else(|| response.get("outcome").and_then(|v| v.as_str()))
                                .unwrap_or("");
                            let granted = matches!(outcome, "selected" | "allow")
                                || response
                                    .get("granted")
                                    .and_then(|v| v.as_bool())
                                    .unwrap_or(false);
                            if granted {
                                if let Some(new_args) = response.get("args") {
                                    tool_args = new_args.clone();
                                }
                                Ok(Some("host_granted"))
                            } else {
                                let reason = response
                                    .get("reason")
                                    .and_then(|v| v.as_str())
                                    .unwrap_or("host did not grant approval")
                                    .to_string();
                                Err(("host_denied", reason))
                            }
                        }
                        Err(_) => Err((
                            "host_denied",
                            "approval request failed or host does not implement \
                             session/request_permission"
                                .to_string(),
                        )),
                    }
                } else {
                    Err((
                        "host_denied",
                        "approval required but no host bridge is available".to_string(),
                    ))
                }
            }
        };
        if let Err((approval_status, reason)) = approval_outcome {
            let result_text = render_tool_result(&denied_tool_result(tool_name, reason.clone()));
            if !state.rejected_tools.contains(&tool_name.to_string()) {
                state.rejected_tools.push(tool_name.to_string());
            }
            state
                .transcript_events
                .push(crate::llm::permissions::permission_transcript_event(
                    "PermissionDeny",
                    tool_name,
                    &tool_args,
                    &reason,
                    false,
                ));
            state.transcript_events.push(transcript_event(
                "tool_execution",
                "tool",
                "internal",
                &result_text,
                Some(serde_json::json!({
                    "tool_name": tool_name,
                    "tool_use_id": tool_id,
                    "rejected": true,
                    "arguments": tool_args.clone(),
                    "approval": approval_status,
                    "error_category": ToolCallErrorCategory::PermissionDenied.as_str(),
                })),
            ));
            super::emit_agent_event(&AgentEvent::ToolCallUpdate {
                session_id: ctx.session_id.to_string(),
                tool_call_id: tool_call_id.clone(),
                tool_name: tool_name.to_string(),
                status: ToolCallStatus::Failed,
                raw_output: None,
                error: Some(reason),
                duration_ms: None,
                execution_duration_ms: None,
                error_category: Some(ToolCallErrorCategory::PermissionDenied),
                executor: None,
                parsing: None,

                raw_input: None,
                raw_input_partial: None,
                audit: tool_audit.clone(),
            })
            .await;
            if ctx.tool_format == "native" {
                append_message_to_contexts(
                    &mut state.visible_messages,
                    &mut state.recorded_messages,
                    build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
                );
            } else {
                observations.push_str(&format!(
                    "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                ));
            }
            continue;
        }
        if let Ok(Some(approval_status)) = approval_outcome {
            state.transcript_events.push(transcript_event(
                "tool_execution",
                "tool",
                "internal",
                "",
                Some(serde_json::json!({
                    "tool_name": tool_name,
                    "tool_use_id": tool_id,
                    "approval": approval_status,
                })),
            ));
        }

        // PreToolUse hooks: in-process hooks first, then bridge gate
        match crate::orchestration::run_pre_tool_hooks(tool_name, &tool_args).await? {
            crate::orchestration::PreToolAction::Allow => {}
            crate::orchestration::PreToolAction::Deny(reason) => {
                let denial_reason = reason.clone();
                let result_text = render_tool_result(&denied_tool_result(tool_name, reason));
                if !state.rejected_tools.contains(&tool_name.to_string()) {
                    state.rejected_tools.push(tool_name.to_string());
                }
                state.transcript_events.push(transcript_event(
                    "tool_execution",
                    "tool",
                    "internal",
                    &result_text,
                    Some(serde_json::json!({
                        "tool_name": tool_name,
                        "tool_use_id": tool_id,
                        "rejected": true,
                        "error_category": ToolCallErrorCategory::PermissionDenied.as_str(),
                    })),
                ));
                super::emit_agent_event(&AgentEvent::ToolCallUpdate {
                    session_id: ctx.session_id.to_string(),
                    tool_call_id: tool_call_id.clone(),
                    tool_name: tool_name.to_string(),
                    status: ToolCallStatus::Failed,
                    raw_output: None,
                    error: Some(denial_reason),
                    duration_ms: None,
                    execution_duration_ms: None,
                    error_category: Some(ToolCallErrorCategory::PermissionDenied),
                    executor: None,
                    parsing: None,

                    raw_input: None,
                    raw_input_partial: None,
                    audit: tool_audit.clone(),
                })
                .await;
                if ctx.tool_format == "native" {
                    append_message_to_contexts(
                        &mut state.visible_messages,
                        &mut state.recorded_messages,
                        build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
                    );
                } else {
                    observations.push_str(&format!(
                        "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                    ));
                }
                continue;
            }
            crate::orchestration::PreToolAction::Modify(new_args) => {
                tool_args = new_args;
            }
        }

        if let Err(msg) = validate_tool_args(tool_name, &tool_args, &tool_schemas) {
            let validation_message = msg.clone();
            let result_text = format!("ERROR: {msg}");
            state.transcript_events.push(transcript_event(
                "tool_execution",
                "tool",
                "internal",
                &result_text,
                Some(serde_json::json!({
                    "tool_name": tool_name,
                    "tool_use_id": tool_id,
                    "rejected": true,
                    "arguments": tool_args.clone(),
                    "error_category": ToolCallErrorCategory::SchemaValidation.as_str(),
                })),
            ));
            super::emit_agent_event(&AgentEvent::ToolCallUpdate {
                session_id: ctx.session_id.to_string(),
                tool_call_id: tool_call_id.clone(),
                tool_name: tool_name.to_string(),
                status: ToolCallStatus::Failed,
                raw_output: None,
                error: Some(validation_message),
                duration_ms: None,
                execution_duration_ms: None,
                error_category: Some(ToolCallErrorCategory::SchemaValidation),
                executor: None,
                parsing: None,

                raw_input: None,
                raw_input_partial: None,
                audit: tool_audit.clone(),
            })
            .await;
            if ctx.tool_format == "native" {
                append_message_to_contexts(
                    &mut state.visible_messages,
                    &mut state.recorded_messages,
                    build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
                );
            } else {
                observations.push_str(&format!(
                    "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
                ));
            }
            continue;
        }

        state.transcript_events.push(transcript_event(
            "tool_intent",
            "assistant",
            "internal",
            tool_name,
            Some(serde_json::json!({"arguments": tool_args.clone(), "tool_use_id": tool_id})),
        ));
        tools_used_this_iter.push(tool_name.to_string());
        let mutation_classification = classify_tool_mutation(tool_name);
        let declared_paths_current = declared_paths(tool_name, &tool_args);
        let tool_started_at = std::time::Instant::now();
        // `ToolCall(Pending)` was already emitted at the top of the loop
        // body so early-failure paths can pair it with a failed update.
        // The InProgress transition runs only once we've cleared every
        // pre-flight check and are about to dispatch.
        super::emit_agent_event(&AgentEvent::ToolCallUpdate {
            session_id: ctx.session_id.to_string(),
            tool_call_id: tool_call_id.clone(),
            tool_name: tool_name.to_string(),
            status: ToolCallStatus::InProgress,
            raw_output: None,
            error: None,
            duration_ms: None,
            execution_duration_ms: None,
            error_category: None,
            // The dispatcher picks the backend below; the in-progress
            // emission is unconditional and runs before that choice.
            executor: None,
            parsing: None,

            raw_input: None,
            raw_input_partial: None,
            audit: tool_audit.clone(),
        })
        .await;
        let tool_span_id =
            crate::tracing::span_start(crate::tracing::SpanKind::ToolCall, tool_name.to_string());
        crate::tracing::span_set_metadata(tool_span_id, "tool_name", serde_json::json!(tool_name));
        crate::tracing::span_set_metadata(tool_span_id, "tool_use_id", serde_json::json!(tool_id));
        crate::tracing::span_set_metadata(
            tool_span_id,
            "call_id",
            serde_json::json!(tool_call_id.clone()),
        );
        crate::tracing::span_set_metadata(tool_span_id, "iteration", serde_json::json!(iteration));
        crate::tracing::span_set_metadata(
            tool_span_id,
            "classification",
            serde_json::json!(mutation_classification.clone()),
        );
        crate::tracing::span_set_metadata(
            tool_span_id,
            "declared_paths",
            serde_json::json!(declared_paths_current.clone()),
        );
        // Check BEFORE dispatch whether this call is stuck in a loop.
        let args_hash = if ctx.loop_detect_enabled {
            stable_hash(&tool_args)
        } else {
            0
        };
        if ctx.loop_detect_enabled {
            if let LoopIntervention::Skip { count } = state.loop_tracker.check(tool_name, args_hash)
            {
                let skip_msg =
                    loop_intervention_message(tool_name, "", &LoopIntervention::Skip { count })
                        .unwrap_or_default();
                state.transcript_events.push(transcript_event(
                    "tool_execution",
                    "tool",
                    "internal",
                    &skip_msg,
                    Some(serde_json::json!({
                        "tool_name": tool_name,
                        "tool_use_id": tool_id,
                        "loop_skipped": true,
                        "repeat_count": count,
                        "rejected": true,
                        "error_category": ToolCallErrorCategory::RejectedLoop.as_str(),
                    })),
                ));
                if ctx.tool_format == "native" {
                    append_message_to_contexts(
                        &mut state.visible_messages,
                        &mut state.recorded_messages,
                        build_tool_result_message(tool_id, tool_name, &skip_msg, &opts.provider),
                    );
                } else {
                    observations.push_str(&format!(
                        "[result of {tool_name}]\n{skip_msg}\n[end of {tool_name} result]\n\n"
                    ));
                }
                crate::tracing::span_end(tool_span_id);
                super::emit_agent_event(&AgentEvent::ToolCallUpdate {
                    session_id: ctx.session_id.to_string(),
                    tool_call_id: tool_call_id.clone(),
                    tool_name: tool_name.to_string(),
                    status: ToolCallStatus::Failed,
                    raw_output: Some(serde_json::json!({
                        "loop_skipped": true,
                        "repeat_count": count,
                    })),
                    error: Some(format!(
                        "tool loop detected (skipped after {count} repeats)"
                    )),
                    duration_ms: Some(tool_started_at.elapsed().as_millis() as u64),
                    execution_duration_ms: None,
                    error_category: Some(ToolCallErrorCategory::RejectedLoop),
                    // Loop intervention preempts the backend choice —
                    // the tool never ran.
                    executor: None,
                    parsing: None,

                    raw_input: None,
                    raw_input_partial: None,
                    audit: tool_audit.clone(),
                })
                .await;
                continue;
            }
        }

        let replay_hit = if crate::llm::mock::get_tool_recording_mode()
            == crate::llm::mock::ToolRecordingMode::Replay
        {
            crate::llm::mock::find_tool_replay_fixture(tool_name, &tool_args)
        } else {
            None
        };

        let tool_start = std::time::Instant::now();
        let mut tool_executor: Option<ToolExecutor> = None;
        let (is_rejected, result_text, dispatch_error_category) =
            if let Some(fixture) = replay_hit {
                let category = fixture
                    .is_rejected
                    .then_some(ToolCallErrorCategory::PermissionDenied);
                // Replay fixtures pre-date the dispatch decision; the
                // recording captured the result, not where it ran.
                (fixture.is_rejected, fixture.result.clone(), category)
            } else {
                // Reuse the parallel pre-fetch result when present.
                let (exec_result, executor) = if let Some((cached_result, cached_executor)) =
                    parallel_results.remove(&tc_index)
                {
                    (cached_result, cached_executor)
                } else {
                    let outcome = dispatch_tool_execution(
                        tool_name,
                        &tool_args,
                        ctx.tools_val,
                        ctx.bridge.as_ref(),
                        ctx.tool_retries,
                        ctx.tool_backoff_ms,
                    )
                    .await;
                    (outcome.result, outcome.executor)
                };
                tool_executor = executor;

                let rejected = matches!(
                    &exec_result,
                    Err(VmError::CategorizedError {
                        category: ErrorCategory::ToolRejected,
                        ..
                    })
                ) || exec_result.as_ref().ok().is_some_and(is_denied_tool_result);
                // Categorize before flattening to a string. `ToolRejected`
                // (or a denied dict) collapses to `permission_denied`; any
                // other categorized error projects through `from_internal`;
                // anything else is generic `tool_error`. This is the only
                // emission site that has the original `VmError` in scope —
                // downstream code only sees the rendered text.
                let category: Option<ToolCallErrorCategory> = match &exec_result {
                    Ok(val) => is_denied_tool_result(val)
                        .then_some(ToolCallErrorCategory::PermissionDenied),
                    Err(VmError::CategorizedError {
                        category: ErrorCategory::ToolRejected,
                        ..
                    }) => Some(ToolCallErrorCategory::PermissionDenied),
                    Err(VmError::CategorizedError { category: cat, .. }) => {
                        Some(ToolCallErrorCategory::from_internal(cat))
                    }
                    Err(_) => Some(ToolCallErrorCategory::ToolError),
                };
                let text = match &exec_result {
                    Ok(val) => render_tool_result(val),
                    Err(VmError::CategorizedError {
                        message,
                        category: ErrorCategory::ToolRejected,
                    }) => render_tool_result(&denied_tool_result(
                        tool_name,
                        format!("{message} Do not retry this tool."),
                    )),
                    Err(error) => format!("Error: {error}"),
                };
                (rejected, text, category)
            };

        if is_rejected && !state.rejected_tools.contains(&tool_name.to_string()) {
            state.rejected_tools.push(tool_name.to_string());
        }

        // Track run() exit codes for verification-gated exit.
        if ctx.exit_when_verified && tool_name == "run" {
            if result_text.contains("exit_code=0")
                || result_text.contains("Command succeeded")
                || result_text.contains("success=true")
            {
                state.last_run_exit_code = Some(0);
            } else if result_text.contains("Command failed")
                || result_text.contains("success=false")
                || result_text.contains("exit_code=")
            {
                state.last_run_exit_code = Some(1);
            }
        }

        let result_text = if let Some(ref ac) = ctx.auto_compact {
            if result_text.len() > ac.tool_output_max_chars {
                if let Some(ref cb) = ac.compress_callback {
                    crate::orchestration::invoke_compress_callback(
                        cb,
                        tool_name,
                        &result_text,
                        ac.tool_output_max_chars,
                    )
                    .await
                } else {
                    crate::orchestration::microcompact_tool_output(
                        &result_text,
                        ac.tool_output_max_chars,
                    )
                }
            } else {
                result_text
            }
        } else {
            result_text
        };
        crate::tracing::span_set_metadata(
            tool_span_id,
            "status",
            serde_json::json!(if is_rejected { "rejected" } else { "ok" }),
        );
        crate::tracing::span_set_metadata(
            tool_span_id,
            "result_chars",
            serde_json::json!(result_text.len()),
        );

        let result_text =
            crate::orchestration::run_post_tool_hooks(tool_name, &tool_args, &result_text).await?;

        let execution_duration_ms = tool_start.elapsed().as_millis() as u64;
        let duration_ms = tool_started_at.elapsed().as_millis() as u64;
        // Treat "Error:" / "ERROR:" prefixes (from a non-rejected
        // dispatch error or a tool that returned an error string) as a
        // failure on the wire — they were already classified as `error`
        // in the per-iteration tool_results aggregate (see `tool_status`
        // below). Pre-categorization at dispatch time supplies the
        // `error_category`; if that's unset (replay path with no
        // metadata), fall back to `ToolError` for the prefix case.
        let final_status_failed =
            is_rejected || result_text.starts_with("Error:") || result_text.starts_with("ERROR:");
        let final_error_category = if final_status_failed {
            dispatch_error_category.or(Some(ToolCallErrorCategory::ToolError))
        } else {
            None
        };
        super::emit_agent_event(&AgentEvent::ToolCallUpdate {
            session_id: ctx.session_id.to_string(),
            tool_call_id: tool_call_id.clone(),
            tool_name: tool_name.to_string(),
            status: if final_status_failed {
                ToolCallStatus::Failed
            } else {
                ToolCallStatus::Completed
            },
            raw_output: Some(serde_json::json!({
                "text": result_text,
                "tool_use_id": tool_id,
            })),
            error: if final_status_failed {
                Some(result_text.clone())
            } else {
                None
            },
            duration_ms: Some(duration_ms),
            execution_duration_ms: Some(execution_duration_ms),
            error_category: final_error_category,
            executor: tool_executor.clone(),
            parsing: None,

            raw_input: None,
            raw_input_partial: None,
            audit: tool_audit.clone(),
        })
        .await;

        crate::tracing::span_end(tool_span_id);

        if crate::llm::mock::get_tool_recording_mode()
            == crate::llm::mock::ToolRecordingMode::Record
        {
            crate::llm::mock::record_tool_call(crate::orchestration::ToolCallRecord {
                tool_name: tool_name.to_string(),
                tool_use_id: tool_call_id.clone(),
                args_hash: crate::orchestration::tool_fixture_hash(tool_name, &tool_args),
                result: result_text.clone(),
                is_rejected,
                duration_ms: tool_started_at.elapsed().as_millis() as u64,
                iteration,
                timestamp: crate::orchestration::now_rfc3339(),
            });
        }

        let result_text = if ctx.loop_detect_enabled && !is_rejected {
            let result_hash = stable_hash_str(&result_text);
            let intervention = state.loop_tracker.record(tool_name, args_hash, result_hash);
            if let Some(msg) = loop_intervention_message(tool_name, &result_text, &intervention) {
                let (kind, count) = match &intervention {
                    LoopIntervention::Warn { count } => ("warn", *count),
                    LoopIntervention::Block { count } => ("block", *count),
                    LoopIntervention::Skip { count } => ("skip", *count),
                    LoopIntervention::Proceed => ("proceed", 0),
                };
                super::super::trace::emit_agent_event(
                    super::super::trace::AgentTraceEvent::LoopIntervention {
                        tool_name: tool_name.to_string(),
                        kind: kind.to_string(),
                        count,
                        iteration,
                    },
                );
                match intervention {
                    LoopIntervention::Warn { .. } => format!("{result_text}{msg}"),
                    LoopIntervention::Block { .. } => msg,
                    _ => result_text,
                }
            } else {
                result_text
            }
        } else {
            result_text
        };
        let tool_status = if is_rejected {
            "rejected"
        } else if result_text.starts_with("Error:") || result_text.starts_with("ERROR:") {
            "error"
        } else {
            "ok"
        };

        tool_results_this_iter.push(serde_json::json!({
            "tool_name": tool_name,
            "status": tool_status,
            "rejected": is_rejected,
        }));

        let mut transcript_metadata = serde_json::json!({
            "tool_name": tool_name,
            "tool_use_id": tool_id,
            "rejected": is_rejected,
        });
        if let Some(cat) = final_error_category {
            transcript_metadata["error_category"] =
                serde_json::Value::String(cat.as_str().to_string());
        }
        state.transcript_events.push(transcript_event(
            "tool_execution",
            "tool",
            "internal",
            &result_text,
            Some(transcript_metadata),
        ));

        if is_rejected {
            super::super::trace::emit_agent_event(
                super::super::trace::AgentTraceEvent::ToolRejected {
                    tool_name: tool_name.to_string(),
                    reason: result_text.clone(),
                    iteration,
                },
            );
        } else {
            super::super::trace::emit_agent_event(
                super::super::trace::AgentTraceEvent::ToolExecution {
                    tool_name: tool_name.to_string(),
                    tool_use_id: tool_id.to_string(),
                    duration_ms: tool_start.elapsed().as_millis() as u64,
                    status: tool_status.to_string(),
                    classification: classify_tool_mutation(tool_name),
                    iteration,
                },
            );
        }

        if ctx.tool_format == "native" {
            append_message_to_contexts(
                &mut state.visible_messages,
                &mut state.recorded_messages,
                build_tool_result_message(tool_id, tool_name, &result_text, &opts.provider),
            );
        } else {
            observations.push_str(&format!(
                "[result of {tool_name}]\n{result_text}\n[end of {tool_name} result]\n\n"
            ));
        }
    }

    Ok(ToolDispatchResult {
        tools_used_this_iter,
        tool_results_this_iter,
        observations,
    })
}