noetl-tools 3.9.1

NoETL Tool Library - Shared tool implementations for workflow execution
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
//! Task sequence tool — runs a list of sub-tasks in order through
//! the registry, using forward-only data propagation via explicit
//! `input:` / `set:` bindings per the NoETL DSL convention.
//!
//! Wire format from noetl-server (`ToolDefinition::Pipeline` after
//! the `noetl/ai-meta#57` fix): the `config` payload is a JSON
//! array of single-key objects, where the key is the task label
//! and the value is a `ToolSpec`-shaped map carrying the task's
//! tool kind + its tool-specific config fields:
//!
//! ```json
//! [
//!   {"transform": {"kind": "python", "code": "...", "input": {...}}},
//!   {"save":      {"kind": "postgres", "query": "INSERT ..."}}
//! ]
//! ```
//!
//! Data flow between tool items follows the DSL's established
//! forward-only convention (noetl_dsl_assignment_and_reference_spec
//! §7, noetl_dsl_refactoring_spec §4.2):
//!
//! - **`set:`** on a tool item evaluates expressions against the
//!   tool's `output` after execution, then merges the resolved
//!   key-value pairs into a running context shared across items.
//! - **`input:`** on a tool item resolves its values from the
//!   running context, then injects them as local template
//!   variables for the tool's own templates (`command:`, `query:`,
//!   `code:`, etc.).  The resolved `input:` also passes through
//!   to tools that read it natively (e.g. python's `input_data`).
//! - **`output`** is available inside `set:` expressions as the
//!   executed tool's result data (`{{ output.field }}`).
//!
//! The aggregated result data is a JSON object keyed by task
//! label.  Status is `Success` if every sub-task succeeded,
//! `Error` on the first sub-task failure (the rest are skipped
//! so the orchestrator's failure-termination logic — noetl/server
//! #63 — emits `playbook.failed` cleanly).
//!
//! Tracks noetl/tools#15, noetl/ai-meta#77.

use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

use crate::context::ExecutionContext;
use crate::error::ToolError;
use crate::registry::{Tool, ToolConfig};
use crate::result::{ToolResult, ToolStatus};
use crate::template::TemplateEngine;

/// Task sequence configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[allow(dead_code)]
pub struct TaskSequenceConfig {
    /// Pipeline tasks.  Accepts the bare-array wire shape the
    /// server emits as `config: [{label: spec}, ...]`; the custom
    /// `From<serde_json::Value>` path below also handles a nested
    /// `{tasks: [...]}` form should a future producer wrap it.
    #[serde(default)]
    pub tasks: Vec<HashMap<String, serde_json::Value>>,
}

/// Task sequence tool implementation.
pub struct TaskSequenceTool {
    template_engine: TemplateEngine,
}

impl TaskSequenceTool {
    /// Create a new task sequence tool.
    pub fn new() -> Self {
        Self {
            template_engine: TemplateEngine::new(),
        }
    }

    /// Parse the task list from the incoming config.  Three
    /// acceptable shapes:
    ///
    /// 1. **Bare array** — `[{label: spec}, ...]`.  Pre-worker-
    ///    envelope shape; useful for unit tests and any caller
    ///    that hands a raw task list to the tool.
    /// 2. **Object with `tasks` field** — `{"tasks": [...]}`.
    ///    Future-proof wrap shape; no current emitter uses it but
    ///    the parser accepts it so producers can adopt without a
    ///    coordinated change.
    /// 3. **Worker envelope** — `{"args": ..., "tool_config":
    ///    [...], "render_context": ...}`.  The actual shape the
    ///    Rust worker's command-dispatch path produces: the
    ///    rendered tool config gets wrapped in `args` +
    ///    `tool_config` + `render_context` before being handed to
    ///    the registry.  Most other tools (PythonTool, etc.)
    ///    deserialize from this envelope via serde-default-skip
    ///    on the unknown fields; task_sequence needs the actual
    ///    list, which lives under `tool_config`.
    fn parse_tasks(
        &self,
        config: &ToolConfig,
    ) -> Result<Vec<HashMap<String, serde_json::Value>>, ToolError> {
        match &config.config {
            serde_json::Value::Array(_) => {
                let tasks: Vec<HashMap<String, serde_json::Value>> =
                    serde_json::from_value(config.config.clone()).map_err(|e| {
                        ToolError::Configuration(format!(
                            "task_sequence: bare-array config did not decode as Vec<HashMap<String, Value>>: {e}"
                        ))
                    })?;
                Ok(tasks)
            }
            serde_json::Value::Object(map) => {
                // Prefer `tool_config` (worker envelope shape) over
                // `tasks` (forward-compat wrap shape) so callers can
                // mix and match without ambiguity in this parser.
                let array_value = map
                    .get("tool_config")
                    .or_else(|| map.get("tasks"))
                    .ok_or_else(|| {
                        ToolError::Configuration(
                            "task_sequence config must be an array, or an object containing a `tool_config` field (worker envelope) or a `tasks` field".to_string(),
                        )
                    })?;
                let tasks: Vec<HashMap<String, serde_json::Value>> =
                    serde_json::from_value(array_value.clone()).map_err(|e| {
                        ToolError::Configuration(format!(
                            "task_sequence: pipeline field did not decode as Vec<HashMap<String, Value>>: {e}"
                        ))
                    })?;
                Ok(tasks)
            }
            other => Err(ToolError::Configuration(format!(
                "task_sequence: config must be array or object, got {}",
                other
            ))),
        }
    }

    /// Convert a single labeled task entry into a `ToolConfig` the
    /// registry can dispatch.  The label is dropped; the embedded
    /// `kind` field on the spec becomes the registry lookup key.
    fn build_task_config(label: &str, spec: &serde_json::Value) -> Result<ToolConfig, ToolError> {
        let spec_obj = spec.as_object().ok_or_else(|| {
            ToolError::Configuration(format!(
                "task_sequence: task '{label}' spec must be a JSON object, got {spec}"
            ))
        })?;

        let kind = spec_obj
            .get("kind")
            .and_then(|v| v.as_str())
            .ok_or_else(|| {
                ToolError::Configuration(format!(
                    "task_sequence: task '{label}' missing required 'kind' field"
                ))
            })?
            .to_string();

        // Strip `kind` (registry lookup key), `set` (forward-
        // propagation directive), and `spec` (policy rules — handled
        // by task_sequence, not by the sub-tool) from the inner
        // config.  Everything else (code, query, input, auth, ...)
        // passes through verbatim — the sub-tool decodes from its
        // ToolConfig.config payload exactly as it would for a
        // top-level step.
        let mut inner = spec_obj.clone();
        inner.remove("kind");
        inner.remove("set");
        inner.remove("spec");

        Ok(ToolConfig {
            kind,
            config: serde_json::Value::Object(inner),
            timeout: None,
            retry: None,
            auth: None,
        })
    }
}

impl Default for TaskSequenceTool {
    fn default() -> Self {
        Self::new()
    }
}

#[async_trait]
impl Tool for TaskSequenceTool {
    fn name(&self) -> &'static str {
        "task_sequence"
    }

    async fn execute(
        &self,
        config: &ToolConfig,
        ctx: &ExecutionContext,
    ) -> Result<ToolResult, ToolError> {
        let start = std::time::Instant::now();

        let tasks = self.parse_tasks(config)?;

        // Fresh registry instance for sub-task dispatch.  See module
        // docs — the back-reference avoidance keeps task_sequence
        // standalone, at the cost of one registry build per execute.
        // Acceptable in practice (~µs); a OnceLock-backed singleton
        // is a follow-up if real-world usage shows hot pipelines.
        let registry = crate::tools::create_default_registry();

        let mut labeled_results: HashMap<String, serde_json::Value> = HashMap::new();
        let mut last_stdout = String::new();
        let mut last_stderr = String::new();
        let mut total_exit_code: i32 = 0;

        // Running context that accumulates `set:` values across
        // tool items — the forward-only propagation surface.
        let mut running_ctx = ctx.clone();

        // Track context mutations from policy-rule `set:` so the
        // server can propagate them to subsequent steps.  Worker-side
        // task_sequence only sees one step's pipeline; cross-step
        // propagation requires the server to apply these mutations
        // to the execution state.  Keyed by the `set:` key exactly
        // as written in the playbook (e.g. `ctx.counter`).
        let mut context_updates: HashMap<String, serde_json::Value> = HashMap::new();

        tracing::debug!(task_count = tasks.len(), "task_sequence: starting pipeline");

        for (idx, task_entry) in tasks.into_iter().enumerate() {
            if task_entry.len() != 1 {
                return Err(ToolError::Configuration(format!(
                    "task_sequence: task[{idx}] must have exactly one labeled entry (got {})",
                    task_entry.len()
                )));
            }
            let (label, spec) = task_entry.into_iter().next().unwrap();

            let spec_obj = spec.as_object().ok_or_else(|| {
                ToolError::Configuration(format!(
                    "task_sequence: task '{label}' spec must be a JSON object"
                ))
            })?;

            // Extract `set:` directive — not a tool config field;
            // evaluated post-execution for forward propagation.
            let set_block = spec_obj.get("set").cloned();

            // Extract `spec.policy.rules` — DSL policy rules whose
            // `then.set` directives are evaluated post-execution,
            // mirroring the Python server's per-tool policy handling.
            let policy_rules = spec_obj
                .get("spec")
                .and_then(|s| s.get("policy"))
                .and_then(|p| p.get("rules"))
                .and_then(|r| r.as_array())
                .cloned();

            // Build per-tool context from the running context
            // (includes vars from prior items' `set:` blocks).
            let mut task_ctx = running_ctx.clone();

            // Resolve `input:` values against the running context,
            // then inject the resolved key-value pairs as local
            // template vars so the tool's own templates (command,
            // query, code) can reference them by name.  The server
            // emits `input` (renamed from ToolSpec's `args` field);
            // fall back to `args` for robustness if `input` is
            // absent.
            let input_val = spec_obj.get("input").or_else(|| spec_obj.get("args"));
            if let Some(input_obj) = input_val.and_then(|v| v.as_object()) {
                let template_ctx = task_ctx.to_template_context();
                for (key, val) in input_obj {
                    let rendered = self.template_engine.render_value(val, &template_ctx)?;
                    task_ctx.variables.insert(key.clone(), rendered);
                }
            }

            let raw_task_config = Self::build_task_config(&label, &spec)?;

            // Render templates in the task config against the
            // augmented context (running vars + resolved input).
            let rendered = self
                .template_engine
                .render_value(&raw_task_config.config, &task_ctx.to_template_context())?;
            let task_config = ToolConfig {
                kind: raw_task_config.kind,
                config: rendered,
                timeout: raw_task_config.timeout,
                retry: raw_task_config.retry,
                auth: raw_task_config.auth,
            };

            let task_result = registry
                .execute_from_config(&task_config, &task_ctx)
                .await?;

            // Carry forward stdout / stderr / exit code from each
            // sub-task — the pipeline's final ToolResult collects
            // the last task's I/O streams so logs / debugging see
            // the tail of the pipeline.  Aggregated structured data
            // lives under `labeled_results`.
            if let Some(stdout) = task_result.stdout.as_ref() {
                last_stdout = stdout.clone();
            }
            if let Some(stderr) = task_result.stderr.as_ref() {
                last_stderr = stderr.clone();
            }
            total_exit_code = task_result.exit_code.unwrap_or(0);

            let result_data = task_result.data.clone().unwrap_or(serde_json::Value::Null);
            labeled_results.insert(label.clone(), result_data.clone());

            // noetl/ai-meta#87: expose this sub-tool's result under its
            // label in the running context so a LATER sibling sub-tool
            // in the same multi-tool step can reference it via
            // `{{ <label>.<field> }}`.  Before this, only
            // `set:`-propagated values and the immediately-preceding
            // `output` were visible; a direct sibling reference rendered
            // empty — e.g. `{{ generate_large.metadata.record_count }}`
            // collapsed to `VALUES ('large_payload_test', , ...)` and
            // DuckDB raised `syntax error at or near ","`.  The bug was
            // masked wherever the reference sat in a quoted position (an
            // empty render is a valid `''`).
            //
            // Mirror the server's `build_context` shape (state.rs): when
            // the result is an object without its own `data` key, add a
            // synthetic `data` self-reference so both `{{ label.field }}`
            // and `{{ label.data.field }}` resolve — matching how a
            // single-tool step's result is exposed to next.arcs /
            // step.when downstream.  The result is also visible to a
            // later python sub-tool via the stdin `variables` map.
            let sibling_value = match &result_data {
                serde_json::Value::Object(map) if !map.contains_key("data") => {
                    let mut m = map.clone();
                    m.insert("data".to_string(), result_data.clone());
                    serde_json::Value::Object(m)
                }
                _ => result_data.clone(),
            };
            running_ctx.variables.insert(label.clone(), sibling_value);

            // Forward propagation: evaluate `set:` expressions
            // against the running context augmented with `output`
            // (this tool's result data), then merge the resolved
            // values into the running context for subsequent items.
            if let Some(set_val) = set_block {
                if let Some(set_obj) = set_val.as_object() {
                    let mut set_eval_ctx = task_ctx.clone();
                    set_eval_ctx
                        .variables
                        .insert("output".to_string(), result_data.clone());
                    let set_template_ctx = set_eval_ctx.to_template_context();
                    for (key, expr) in set_obj {
                        let rendered =
                            self.template_engine.render_value(expr, &set_template_ctx)?;
                        set_nested_var(&mut running_ctx.variables, key, rendered);
                    }
                }
            }

            // Policy-rule evaluation: `spec.policy.rules` on a
            // tool item allows conditional `set:` and `do: fail`
            // based on the tool output.  The `output` context wraps
            // the raw result in a `{status, data}` envelope so
            // templates like `{{ output.data.counter }}` resolve
            // correctly (matches the Python server's convention).
            if let Some(ref rules) = policy_rules {
                // Build the output envelope for policy evaluation
                let output_envelope = serde_json::json!({
                    "status": if task_result.status == ToolStatus::Success { "success" } else { "error" },
                    "data": result_data.clone(),
                    "error": {
                        "retryable": false
                    }
                });
                let mut policy_eval_ctx = task_ctx.clone();
                policy_eval_ctx
                    .variables
                    .insert("output".to_string(), output_envelope);
                let policy_template_ctx = policy_eval_ctx.to_template_context();

                for rule in rules {
                    let rule_obj = match rule.as_object() {
                        Some(o) => o,
                        None => continue,
                    };

                    // Determine if the rule matches and get the `then:` block.
                    let (matched, then_block) = if let Some(when_val) = rule_obj.get("when") {
                        // Conditional rule — render `when:` expression.
                        // YAML `when: true` / `when: false` arrives as
                        // a JSON boolean, not a string — handle it
                        // directly before falling through to template
                        // rendering for string expressions.
                        if let Some(b) = when_val.as_bool() {
                            (b, rule_obj.get("then"))
                        } else {
                            let condition_str = when_val.as_str().unwrap_or("");
                            let rendered = self
                                .template_engine
                                .render(condition_str, &policy_template_ctx)
                                .unwrap_or_default();
                            let is_truthy = !rendered.is_empty()
                                && rendered != "false"
                                && rendered != "False"
                                && rendered != "0"
                                && rendered != "none"
                                && rendered != "None"
                                && rendered != "null";
                            (is_truthy, rule_obj.get("then"))
                        }
                    } else if let Some(else_val) = rule_obj.get("else") {
                        // `else:` catch-all — always matches;
                        // `then:` is nested under the `else` key.
                        let then_val = else_val
                            .as_object()
                            .and_then(|o| o.get("then"));
                        (true, then_val)
                    } else {
                        (false, None)
                    };

                    if !matched {
                        continue;
                    }

                    if let Some(then_val) = then_block {
                        let then_obj = then_val.as_object();

                        // Apply `set:` mutations from the matching rule
                        if let Some(set_val) = then_obj.and_then(|o| o.get("set")) {
                            if let Some(set_obj) = set_val.as_object() {
                                for (key, expr) in set_obj {
                                    let rendered = self
                                        .template_engine
                                        .render_value(expr, &policy_template_ctx)?;
                                    set_nested_var(
                                        &mut running_ctx.variables,
                                        key,
                                        rendered.clone(),
                                    );
                                    // Record the mutation for cross-step
                                    // propagation via `_context_updates`
                                    // in the result payload.
                                    context_updates
                                        .insert(key.clone(), rendered);
                                }
                            }
                        }

                        // Handle `do:` action — `fail` short-circuits
                        // the pipeline; `continue` (and unrecognised
                        // actions) proceed normally.  `retry` is
                        // deferred to a follow-up.
                        if let Some(do_val) = then_obj.and_then(|o| o.get("do")) {
                            if do_val.as_str() == Some("fail") {
                                let duration_ms = start.elapsed().as_millis() as u64;
                                return Ok(ToolResult {
                                    status: ToolStatus::Error,
                                    data: Some(serde_json::json!({
                                        "labeled_results": labeled_results,
                                        "failed_task": idx,
                                    })),
                                    error: Some(format!(
                                        "policy rule triggered fail for task[{idx}] '{label}'"
                                    )),
                                    stdout: Some(last_stdout),
                                    stderr: Some(last_stderr),
                                    exit_code: Some(1),
                                    duration_ms: Some(duration_ms),
                                    pending_callback: None,
                                });
                            }
                        }
                    }
                    break; // First matching rule wins
                }
            }

            // Failure short-circuit: the orchestrator's
            // command.failed handler (noetl/ai-meta#58) emits
            // playbook.failed cleanly when the worker reports a
            // failed sub-task, so we don't run the rest of the
            // pipeline — the user's expectation of "first failure
            // stops the pipeline" matches the Python reference.
            if task_result.status == ToolStatus::Error {
                let duration_ms = start.elapsed().as_millis() as u64;
                return Ok(ToolResult {
                    status: ToolStatus::Error,
                    data: Some(serde_json::json!({
                        "labeled_results": labeled_results,
                        "failed_task": idx,
                    })),
                    error: task_result
                        .error
                        .clone()
                        .or_else(|| Some(format!("task_sequence task[{idx}] failed"))),
                    stdout: Some(last_stdout),
                    stderr: Some(last_stderr),
                    exit_code: Some(total_exit_code),
                    duration_ms: Some(duration_ms),
                    pending_callback: None,
                });
            }
        }

        let duration_ms = start.elapsed().as_millis() as u64;

        // Merge `_context_updates` into the result data so the
        // server can apply cross-step variable propagation.  Only
        // added when policy rules produced mutations — the key is
        // absent otherwise, so existing consumers are unaffected.
        let mut result_map: serde_json::Map<String, serde_json::Value> =
            labeled_results.into_iter().collect();
        if !context_updates.is_empty() {
            result_map.insert(
                "_context_updates".to_string(),
                serde_json::to_value(&context_updates)
                    .unwrap_or(serde_json::Value::Null),
            );
        }

        Ok(ToolResult {
            status: ToolStatus::Success,
            data: Some(serde_json::Value::Object(result_map)),
            error: None,
            stdout: Some(last_stdout),
            stderr: Some(last_stderr),
            exit_code: Some(total_exit_code),
            duration_ms: Some(duration_ms),
            pending_callback: None,
        })
    }
}

/// Insert a value into a context map, supporting dotted keys.
///
/// `"foo"` inserts a flat key.  `"a.b.c"` builds nested objects:
/// `ctx["a"]["b"]["c"] = value`.  This mirrors the DSL's scoped
/// variable convention (`iter.page`, `ctx.stats_ref`, `step.x`)
/// where the dot is a namespace separator.
fn set_nested_var(
    ctx: &mut HashMap<String, serde_json::Value>,
    key: &str,
    value: serde_json::Value,
) {
    let parts: Vec<&str> = key.split('.').collect();
    if parts.len() == 1 {
        ctx.insert(key.to_string(), value);
        return;
    }
    // Build nested: "a.b.c" → ctx["a"]["b"]["c"] = value
    let root = parts[0].to_string();
    let entry = ctx.entry(root).or_insert_with(|| serde_json::json!({}));
    let mut current = entry;
    for part in &parts[1..parts.len() - 1] {
        if !current.is_object() {
            *current = serde_json::json!({});
        }
        current = current
            .as_object_mut()
            .unwrap()
            .entry(part.to_string())
            .or_insert_with(|| serde_json::json!({}));
    }
    if let Some(obj) = current.as_object_mut() {
        obj.insert(parts.last().unwrap().to_string(), value);
    }
}

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

    #[test]
    fn test_parse_tasks_bare_array_shape() {
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {"transform": {"kind": "python", "code": "result={}"}},
                {"save": {"kind": "python", "code": "result={}"}},
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let tasks = tool.parse_tasks(&config).expect("bare array parses");
        assert_eq!(tasks.len(), 2);
        assert!(tasks[0].contains_key("transform"));
        assert!(tasks[1].contains_key("save"));
    }

    #[test]
    fn test_parse_tasks_worker_envelope_shape() {
        // The Rust worker's command-dispatch path wraps the
        // rendered tool config in `{args, tool_config,
        // render_context}` before handing it to the registry.
        // task_sequence must walk into `tool_config` to find the
        // actual task list — without this, every flat-pipeline
        // playbook fixture (start_with_action, end_with_action,
        // iterator_save_test, http_test, postgres_test, ...)
        // failed with "config must be array or object with
        // 'tasks' field" in local kind.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!({
                "args": {},
                "tool_config": [
                    {"init_action": {"kind": "python", "code": "result={}"}},
                    {"finish":      {"kind": "python", "code": "result={}"}},
                ],
                "render_context": {"workload": {"test_value": "hello"}}
            }),
            timeout: None,
            retry: None,
            auth: None,
        };
        let tasks = tool.parse_tasks(&config).expect("worker envelope parses");
        assert_eq!(tasks.len(), 2);
        assert!(tasks[0].contains_key("init_action"));
        assert!(tasks[1].contains_key("finish"));
    }

    #[tokio::test]
    async fn test_task_sequence_duckdb_multi_statement() {
        // Regression (noetl/ai-meta#54): duckdb_test.yaml wraps a duckdb
        // tool in a single-item `tool:` list, so it dispatches through
        // task_sequence. A multi-statement query (CREATE; INSERT; SELECT)
        // must run end-to-end via the sub-task registry dispatch, the same
        // way it does for a direct single-tool duckdb step.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {"run_query": {
                    "kind": "duckdb",
                    "database": ":memory:",
                    "query": "CREATE TABLE u (id INTEGER, name VARCHAR);\nINSERT INTO u VALUES (1, 'Alice'), (2, 'Bob');\nSELECT name FROM u ORDER BY id;"
                }},
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool
            .execute(&config, &ctx)
            .await
            .expect("task_sequence duckdb sub-task runs");
        assert!(
            result.is_success(),
            "expected success, got: {:?}",
            result.error
        );
    }

    #[test]
    fn test_parse_tasks_nested_object_shape() {
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!({
                "tasks": [
                    {"a": {"kind": "python", "code": "result={}"}},
                ]
            }),
            timeout: None,
            retry: None,
            auth: None,
        };
        let tasks = tool.parse_tasks(&config).expect("nested object parses");
        assert_eq!(tasks.len(), 1);
    }

    #[test]
    fn test_parse_tasks_rejects_non_array_non_object() {
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!("not a pipeline"),
            timeout: None,
            retry: None,
            auth: None,
        };
        assert!(tool.parse_tasks(&config).is_err());
    }

    #[test]
    fn test_build_task_config_extracts_kind_and_strips_set() {
        let spec = serde_json::json!({
            "kind": "python",
            "code": "result = {'x': 1}",
            "input": {"y": 2},
            "set": {"val": "{{ output.x }}"}
        });
        let cfg = TaskSequenceTool::build_task_config("compute", &spec)
            .expect("build_task_config succeeds");
        assert_eq!(cfg.kind, "python");
        // `kind` and `set` are stripped from inner config so the
        // sub-tool's deserializer doesn't see them.
        assert!(cfg.config.get("kind").is_none(), "kind must be stripped");
        assert!(cfg.config.get("set").is_none(), "set must be stripped");
        assert!(cfg.config.get("code").is_some(), "code preserved");
        assert!(cfg.config.get("input").is_some(), "input preserved");
    }

    #[test]
    fn test_set_nested_var_flat_key() {
        let mut ctx = HashMap::new();
        set_nested_var(&mut ctx, "name", serde_json::json!("hello"));
        assert_eq!(ctx.get("name"), Some(&serde_json::json!("hello")));
    }

    #[test]
    fn test_set_nested_var_dotted_key() {
        let mut ctx = HashMap::new();
        set_nested_var(&mut ctx, "data.id", serde_json::json!(42));
        set_nested_var(&mut ctx, "data.name", serde_json::json!("test"));
        let data = ctx.get("data").expect("data key exists");
        assert_eq!(data.get("id"), Some(&serde_json::json!(42)));
        assert_eq!(data.get("name"), Some(&serde_json::json!("test")));
    }

    #[test]
    fn test_set_nested_var_deep_dotted_key() {
        let mut ctx = HashMap::new();
        set_nested_var(&mut ctx, "a.b.c", serde_json::json!(true));
        let a = ctx.get("a").unwrap();
        let b = a.get("b").unwrap();
        assert_eq!(b.get("c"), Some(&serde_json::json!(true)));
    }

    #[test]
    fn test_build_task_config_errors_on_missing_kind() {
        let spec = serde_json::json!({"code": "result = {}"});
        let err =
            TaskSequenceTool::build_task_config("anon", &spec).expect_err("missing kind rejected");
        assert!(format!("{:?}", err).contains("missing required 'kind'"));
    }

    #[tokio::test]
    async fn test_task_sequence_forward_propagation_via_set_and_input() {
        // Two python tasks: first produces `{'value': 10}` and
        // publishes it via `set:`.  Second reads it via `input:`
        // from the running context — forward-only, no `_prev`.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {
                    "compute": {
                        "kind": "python",
                        "code": "result = {'value': 10}",
                        "set": {
                            "computed_value": "{{ output.value }}"
                        }
                    }
                },
                {
                    "double": {
                        "kind": "python",
                        "code": "result = {'doubled': {{ computed_value }} * 2}",
                        "input": {
                            "computed_value": "{{ computed_value }}"
                        }
                    }
                },
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool.execute(&config, &ctx).await.expect("execute ok");

        assert!(result.is_success(), "pipeline completes successfully");
        let data = result.data.expect("aggregated data present");
        assert!(
            data.get("compute").is_some(),
            "labeled result for first task"
        );
        assert!(
            data.get("double").is_some(),
            "labeled result for second task"
        );
        let doubled = data
            .get("double")
            .and_then(|v| v.get("doubled"))
            .and_then(|v| v.as_i64());
        assert_eq!(
            doubled,
            Some(20),
            "second task should see computed_value = 10 via set:/input: and double it"
        );
    }

    #[tokio::test]
    async fn test_task_sequence_sibling_reference_without_set() {
        // noetl/ai-meta#87: a later sub-tool references an earlier
        // sibling's output directly by label — `{{ <label>.<field> }}`
        // — with NO `set:` and NO `input:` plumbing.  Before the fix
        // the reference rendered empty; here `record_count` collapsing
        // to nothing would make the consumer's `result = {'count': }`
        // a Python syntax error (the same failure shape as the
        // unquoted-SQL `VALUES (..., , ...)` in save_edge_cases).
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {
                    "generate_large": {
                        "kind": "python",
                        "code": "result = {'metadata': {'record_count': 100}, 'records': []}"
                    }
                },
                {
                    "save_large_payload": {
                        "kind": "python",
                        // Unquoted numeric position — mirrors the DuckDB
                        // `VALUES ('x', {{ generate_large.metadata.record_count }}, ...)`.
                        "code": "result = {'count': {{ generate_large.metadata.record_count }}}"
                    }
                },
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool.execute(&config, &ctx).await.expect("execute ok");

        assert!(
            result.is_success(),
            "sibling reference must resolve; pipeline failed: {:?}",
            result.error,
        );
        let data = result.data.expect("data present");
        let count = data
            .get("save_large_payload")
            .and_then(|v| v.get("count"))
            .and_then(|v| v.as_i64());
        assert_eq!(
            count,
            Some(100),
            "later sub-tool must read the earlier sibling's nested field",
        );
    }

    #[tokio::test]
    async fn test_task_sequence_sibling_reference_synthetic_data_accessor() {
        // The sibling result is exposed under both `{{ label.field }}`
        // and `{{ label.data.field }}` (the synthetic `.data`
        // self-reference mirrors the server's build_context shape), and
        // a producer that already returns a `data` key keeps its real
        // nested shape under `{{ label.data.field }}`.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {
                    "flat_producer": {
                        "kind": "python",
                        "code": "result = {'n': 7}"
                    }
                },
                {
                    "wrapped_producer": {
                        "kind": "python",
                        // Already carries its own `data` key.
                        "code": "result = {'status': 'ok', 'data': {'m': 9}}"
                    }
                },
                {
                    "consume": {
                        "kind": "python",
                        // Synthetic `.data` on the flat producer +
                        // real `.data` on the wrapped one.
                        "code": "result = {'flat': {{ flat_producer.data.n }}, 'wrapped': {{ wrapped_producer.data.m }}}"
                    }
                },
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool.execute(&config, &ctx).await.expect("execute ok");

        assert!(
            result.is_success(),
            "both data accessors must resolve; failed: {:?}",
            result.error,
        );
        let data = result.data.expect("data present");
        let consume = data.get("consume").expect("consume result");
        assert_eq!(consume.get("flat").and_then(|v| v.as_i64()), Some(7));
        assert_eq!(consume.get("wrapped").and_then(|v| v.as_i64()), Some(9));
    }

    #[tokio::test]
    async fn test_task_sequence_set_with_dotted_keys() {
        // Verify that `set:` with dotted keys like `data.id`
        // builds nested objects in the running context.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {
                    "produce": {
                        "kind": "python",
                        "code": "result = {'id': 42, 'name': 'test'}",
                        "set": {
                            "data.id": "{{ output.id }}",
                            "data.name": "{{ output.name }}"
                        }
                    }
                },
                {
                    "consume": {
                        "kind": "python",
                        "code": "result = {'got_id': {{ data.id }}, 'got_name': '{{ data.name }}'}"
                    }
                },
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool.execute(&config, &ctx).await.expect("execute ok");

        assert!(result.is_success(), "pipeline completes");
        let data = result.data.expect("data present");
        let got_id = data
            .get("consume")
            .and_then(|v| v.get("got_id"))
            .and_then(|v| v.as_i64());
        assert_eq!(got_id, Some(42));
    }

    #[tokio::test]
    async fn test_task_sequence_input_as_tool_input_data() {
        // Verify that `input:` passes through to the python tool
        // as `input_data` while also making values available as
        // template vars.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {
                    "produce": {
                        "kind": "python",
                        "code": "result = {'x': 99}",
                        "set": {
                            "x_val": "{{ output.x }}"
                        }
                    }
                },
                {
                    "consume": {
                        "kind": "python",
                        "input": {
                            "my_x": "{{ x_val }}"
                        },
                        "code": "result = {'from_input': input_data.get('my_x', 'missing')}"
                    }
                },
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool.execute(&config, &ctx).await.expect("execute ok");

        assert!(result.is_success());
        let data = result.data.expect("data present");
        let from_input = data
            .get("consume")
            .and_then(|v| v.get("from_input"));
        assert_eq!(from_input, Some(&serde_json::json!(99)));
    }

    #[tokio::test]
    async fn test_task_sequence_short_circuits_on_failure() {
        // First task succeeds; second task raises an exception
        // (exit_code != 0).  Pipeline should stop after the second
        // task and return Error status without running the third.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {"ok":   {"kind": "python", "code": "result = {'k': 1}"}},
                {"boom": {"kind": "python", "code": "raise ValueError('intentional')"}},
                {"never_runs": {"kind": "python", "code": "result = {'should_not': True}"}},
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool
            .execute(&config, &ctx)
            .await
            .expect("execute returns Ok with Error status");

        assert_eq!(result.status, ToolStatus::Error);
        let data = result.data.expect("partial data present");
        // The error envelope marks which task failed; the
        // `never_runs` task did not contribute.
        let failed_idx = data.get("failed_task").and_then(|v| v.as_i64());
        assert_eq!(failed_idx, Some(1), "second task is the failure point");
        let labeled = data
            .get("labeled_results")
            .and_then(|v| v.as_object())
            .unwrap();
        assert!(labeled.contains_key("ok"), "first task's result recorded");
        assert!(
            !labeled.contains_key("never_runs"),
            "third task was skipped after failure"
        );
    }

    #[tokio::test]
    async fn test_task_sequence_policy_rule_set_else() {
        // Verify `spec.policy.rules` with an `else` catch-all
        // applies `set:` mutations using the `output.data.*`
        // envelope convention.
        let tool = TaskSequenceTool::new();
        let config = ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!([
                {
                    "produce": {
                        "kind": "python",
                        "code": "result = {'counter': 42, 'message': 'works'}",
                        "spec": {
                            "policy": {
                                "rules": [{
                                    "else": {
                                        "then": {
                                            "do": "continue",
                                            "set": {
                                                "ctx.counter": "{{ output.data.counter }}",
                                                "ctx.message": "{{ output.data.message }}"
                                            }
                                        }
                                    }
                                }]
                            }
                        }
                    }
                },
                {
                    "consume": {
                        "kind": "python",
                        "input": {
                            "counter": "{{ ctx.counter }}",
                            "msg": "{{ ctx.message }}"
                        },
                        "code": "result = {'got_counter': counter, 'got_msg': msg}"
                    }
                },
            ]),
            timeout: None,
            retry: None,
            auth: None,
        };
        let ctx = ExecutionContext::default();
        let result = tool.execute(&config, &ctx).await.expect("execute ok");

        assert!(result.is_success(), "pipeline completes successfully");
        let data = result.data.expect("aggregated data present");
        let consume = data.get("consume").expect("consume result present");
        assert_eq!(
            consume.get("got_counter").and_then(|v| v.as_i64()),
            Some(42),
            "policy-rule set: propagated counter via output.data.counter"
        );
        assert_eq!(
            consume.get("got_msg").and_then(|v| v.as_str()),
            Some("works"),
            "policy-rule set: propagated message via output.data.message"
        );
    }

    #[test]
    fn test_task_sequence_tool_name() {
        let tool = TaskSequenceTool::new();
        assert_eq!(tool.name(), "task_sequence");
    }

    #[test]
    fn test_render_value_roundtrip_complex_object() {
        // Regression test for iterator_save_test: verify that
        // rendering {{ output.data }} where output.data is a complex
        // object round-trips correctly through render_value so that
        // subsequent access to nested fields (.item_name) works.
        use crate::template::TemplateEngine;

        let engine = TemplateEngine::new();

        // Simulate the output envelope the policy evaluation builds
        let output = serde_json::json!({
            "status": "success",
            "data": {"item_name": "item1", "item_value": 100},
            "error": {"retryable": false}
        });
        let mut ctx: HashMap<String, serde_json::Value> = HashMap::new();
        ctx.insert("output".to_string(), output);
        ctx.insert("iter".to_string(), serde_json::json!({
            "item": {"name": "item1", "value": 100},
            "_index": 0,
            "_total": 3,
        }));

        // Step 1: Render {{ output.data }} — this is what the set: block does
        let expr = serde_json::json!("{{ output.data }}");
        let rendered = engine.render_value(&expr, &ctx).expect("render_value ok");

        // The rendered value MUST be a JSON object, not a string
        assert!(
            rendered.is_object(),
            "expected object, got: {:?} (type: {})",
            rendered,
            match &rendered {
                serde_json::Value::String(_) => "string",
                serde_json::Value::Object(_) => "object",
                serde_json::Value::Null => "null",
                _ => "other",
            }
        );

        // Step 2: Apply the set mutation: iter.processed_item = rendered
        set_nested_var(&mut ctx, "iter.processed_item", rendered);

        // Step 3: Verify we can access iter.processed_item.item_name
        let result = engine.render("{{ iter.processed_item.item_name }}", &ctx)
            .expect("nested field resolves");
        assert_eq!(result, "item1", "nested field access should work");
    }

    #[test]
    fn test_policy_rules_extraction_from_wire_format() {
        // Reproduce the exact wire format the server produces for
        // iterator_save_test and verify that parse_tasks + policy
        // rules extraction works correctly.
        let tool = TaskSequenceTool::new();

        // This is the wire format: tool_config array wrapped in
        // a worker envelope with kind injected.
        let wire_config = serde_json::json!({
            "kind": "task_sequence",
            "tool_config": [
                {
                    "process_item": {
                        "kind": "python",
                        "code": "result = {'item_name': item.get('name', 'unknown'), 'item_value': item.get('value', 0)}",
                        "input": {"item": "{{ iter.item }}"},
                        "name": "process_item",
                        "spec": {
                            "policy": {
                                "rules": [
                                    {
                                        "when": true,
                                        "then": {
                                            "do": "continue",
                                            "set": {
                                                "iter.processed_item": "{{ output.data }}"
                                            }
                                        }
                                    }
                                ]
                            }
                        }
                    }
                },
                {
                    "save_item": {
                        "kind": "postgres",
                        "command": "INSERT INTO test (item_name) VALUES ('{{ iter.processed_item.item_name }}')",
                        "name": "save_item",
                        "host": "localhost",
                        "port": 5432,
                        "database": "test",
                        "user": "test",
                        "password": "test"
                    }
                }
            ]
        });

        let tool_config = crate::registry::ToolConfig {
            kind: "task_sequence".to_string(),
            config: serde_json::json!({"tool_config": wire_config["tool_config"].clone()}),
            timeout: None,
            retry: None,
            auth: None,
        };

        let tasks = tool.parse_tasks(&tool_config).expect("parse_tasks should work");
        assert_eq!(tasks.len(), 2, "should have 2 tasks");

        // Check process_item has spec.policy.rules
        let process_item_entry = &tasks[0];
        assert_eq!(process_item_entry.len(), 1, "single-entry map");
        let (label, spec) = process_item_entry.iter().next().unwrap();
        assert_eq!(label, "process_item");

        let spec_obj = spec.as_object().expect("spec should be object");
        let policy_rules = spec_obj
            .get("spec")
            .and_then(|s| s.get("policy"))
            .and_then(|p| p.get("rules"))
            .and_then(|r| r.as_array());

        assert!(
            policy_rules.is_some(),
            "process_item should have policy rules; spec_obj keys = {:?}, spec_obj = {}",
            spec_obj.keys().collect::<Vec<_>>(),
            serde_json::to_string_pretty(spec_obj).unwrap()
        );
        assert_eq!(policy_rules.unwrap().len(), 1, "should have 1 policy rule");

        // Verify the rule has a set block
        let rule = &policy_rules.unwrap()[0];
        let set_block = rule
            .get("then")
            .and_then(|t| t.get("set"));
        assert!(set_block.is_some(), "rule should have a set block");
    }
}