1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
//! Agent Workflows
//!
//! YAML-defined templates for common development workflows.
//! Supports TDD, Debug, Refactor, Review, and custom workflows.
//!
//! # Execution Modes
//!
//! The workflow executor supports two modes:
//!
//! - **Live mode** (default): Shell commands are executed via `sh -c`, with stdout/stderr
//! captured. Tool and LLM steps require injected handlers.
//!
//! - **Dry-run mode**: All steps log their intended actions without executing. Useful for
//! workflow validation and testing.
//!
//! # Features
//!
//! - Declarative workflow definitions
//! - Step-by-step execution with real shell commands
//! - Conditional branching
//! - Variable substitution
//! - Tool integration (via handler injection)
//! - Progress tracking
use anyhow::{anyhow, Result};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::collections::VecDeque;
use std::path::{Path, PathBuf};
use std::time::{Duration, Instant};
use tokio::process::Command;
mod templates;
#[cfg(test)]
mod tests;
/// Workflow execution status
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(rename_all = "lowercase")]
pub enum WorkflowStatus {
/// Not yet started
#[default]
Pending,
/// Currently running
Running,
/// Completed successfully
Completed,
/// Failed with error
Failed,
/// Paused (can be resumed)
Paused,
/// Cancelled by user
Cancelled,
}
/// Step status
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(rename_all = "lowercase")]
pub enum StepStatus {
#[default]
Pending,
Running,
Completed,
Failed,
Skipped,
}
/// Variable type in workflows
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(untagged)]
pub enum VarValue {
String(String),
Number(f64),
Boolean(bool),
List(Vec<VarValue>),
Map(HashMap<String, VarValue>),
#[default]
Null,
}
impl VarValue {
/// Get as string
pub fn as_string(&self) -> Option<String> {
match self {
VarValue::String(s) => Some(s.clone()),
VarValue::Number(n) => Some(n.to_string()),
VarValue::Boolean(b) => Some(b.to_string()),
_ => None,
}
}
/// Get as bool
pub fn as_bool(&self) -> Option<bool> {
match self {
VarValue::Boolean(b) => Some(*b),
VarValue::String(s) => Some(!s.is_empty()),
VarValue::Number(n) => Some(*n != 0.0),
VarValue::Null => Some(false),
_ => None,
}
}
}
impl From<&str> for VarValue {
fn from(s: &str) -> Self {
VarValue::String(s.to_string())
}
}
impl From<String> for VarValue {
fn from(s: String) -> Self {
VarValue::String(s)
}
}
impl From<bool> for VarValue {
fn from(b: bool) -> Self {
VarValue::Boolean(b)
}
}
impl From<i32> for VarValue {
fn from(n: i32) -> Self {
VarValue::Number(n as f64)
}
}
/// Workflow step type
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum StepType {
/// Execute a tool
Tool {
name: String,
#[serde(default)]
args: HashMap<String, String>,
},
/// Run a shell command
Shell {
command: String,
#[serde(default)]
working_dir: Option<String>,
},
/// Ask the LLM to perform a task
Llm {
prompt: String,
#[serde(default)]
context: Vec<String>,
},
/// Prompt user for input
Input {
prompt: String,
#[serde(default)]
variable: String,
#[serde(default)]
default: Option<String>,
},
/// Conditional step
Condition {
#[serde(rename = "if")]
condition: String,
#[serde(rename = "then")]
then_steps: Vec<String>,
#[serde(rename = "else")]
else_steps: Option<Vec<String>>,
},
/// Loop over items
Loop {
#[serde(rename = "for")]
variable: String,
#[serde(rename = "in")]
items: String,
#[serde(rename = "do")]
do_steps: Vec<String>,
},
/// Set a variable
SetVar { name: String, value: String },
/// Log a message
Log {
message: String,
#[serde(default)]
level: LogLevel,
},
/// Pause for user confirmation
Pause { message: String },
/// Call another workflow
SubWorkflow {
/// Name of the sub-workflow to execute
#[serde(rename = "workflow")]
workflow_name: String,
#[serde(default)]
inputs: HashMap<String, String>,
},
}
/// Log level
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum LogLevel {
Debug,
#[default]
Info,
Warn,
Error,
}
/// A single step in a workflow
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkflowStep {
/// Step identifier
pub id: String,
/// Human-readable name
pub name: String,
/// Description
#[serde(default)]
pub description: String,
/// Step type and action
#[serde(flatten)]
pub step_type: StepType,
/// Whether this step is required (workflow fails if step fails)
#[serde(default = "default_true")]
pub required: bool,
/// Retry configuration
#[serde(default)]
pub retry: RetryConfig,
/// Timeout in seconds
#[serde(default)]
pub timeout_secs: Option<u64>,
/// Dependencies (step IDs that must complete first)
#[serde(default)]
pub depends_on: Vec<String>,
}
fn default_true() -> bool {
true
}
/// Retry configuration
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct RetryConfig {
/// Maximum number of retries
#[serde(default)]
pub max_attempts: u32,
/// Delay between retries in seconds
#[serde(default)]
pub delay_secs: u64,
/// Whether to use exponential backoff
#[serde(default)]
pub exponential: bool,
}
/// Workflow definition
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Workflow {
/// Workflow name
pub name: String,
/// Description
#[serde(default)]
pub description: String,
/// Version
#[serde(default = "default_version")]
pub version: String,
/// Author
#[serde(default)]
pub author: String,
/// Category/type
#[serde(default)]
pub category: String,
/// Input parameters
#[serde(default)]
pub inputs: Vec<WorkflowInput>,
/// Output definitions
#[serde(default)]
pub outputs: Vec<WorkflowOutput>,
/// Steps in the workflow
pub steps: Vec<WorkflowStep>,
/// Tags for discovery
#[serde(default)]
pub tags: Vec<String>,
}
fn default_version() -> String {
"1.0.0".to_string()
}
/// Workflow input parameter
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkflowInput {
/// Parameter name
pub name: String,
/// Description
#[serde(default)]
pub description: String,
/// Whether required
#[serde(default)]
pub required: bool,
/// Default value
#[serde(default)]
pub default: Option<VarValue>,
/// Type hint
#[serde(default = "default_string_type")]
pub param_type: String,
}
fn default_string_type() -> String {
"string".to_string()
}
/// Workflow output
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkflowOutput {
/// Output name
pub name: String,
/// Description
#[serde(default)]
pub description: String,
/// Variable to use as output
pub from: String,
}
/// Step execution result
#[derive(Debug, Clone)]
pub struct StepResult {
/// Step ID
pub step_id: String,
/// Status
pub status: StepStatus,
/// Output value
pub output: Option<VarValue>,
/// Error message if failed
pub error: Option<String>,
/// Duration in milliseconds
pub duration_ms: u64,
/// Retry count
pub retry_count: u32,
}
/// Maximum recursion depth for nested step execution
const MAX_RECURSION_DEPTH: usize = 10;
/// Maximum number of workflow log entries before oldest entries are evicted.
const MAX_WORKFLOW_LOG_ENTRIES: usize = 1000;
/// Workflow execution context
#[derive(Debug, Clone)]
pub struct WorkflowContext {
/// Variables
pub variables: HashMap<String, VarValue>,
/// Working directory
pub working_dir: PathBuf,
/// Step results
pub step_results: HashMap<String, StepResult>,
/// Current step index
pub current_step: usize,
/// Workflow status
pub status: WorkflowStatus,
/// Start time
pub started_at: Option<Instant>,
/// Log messages
pub logs: VecDeque<LogEntry>,
/// Current recursion depth for nested steps
pub recursion_depth: usize,
/// Step IDs currently being executed (for cycle detection)
pub executing_steps: Vec<String>,
/// Step IDs executed inline by control-flow (condition/loop) - skip in top-level pass
pub control_flow_managed_steps: std::collections::HashSet<String>,
/// Workflow call stack for cycle detection in sub-workflows
pub workflow_call_stack: Vec<String>,
}
/// Log entry
#[derive(Debug, Clone)]
pub struct LogEntry {
pub timestamp: u64,
pub level: LogLevel,
pub message: String,
pub step_id: Option<String>,
}
impl WorkflowContext {
/// Create new context
pub fn new(working_dir: impl Into<PathBuf>) -> Self {
Self {
variables: HashMap::new(),
working_dir: working_dir.into(),
step_results: HashMap::new(),
current_step: 0,
status: WorkflowStatus::Pending,
started_at: None,
logs: VecDeque::new(),
recursion_depth: 0,
executing_steps: Vec::new(),
control_flow_managed_steps: std::collections::HashSet::new(),
workflow_call_stack: Vec::new(),
}
}
/// Check if we can safely recurse into a step
fn can_recurse(&self, step_id: &str) -> Result<(), String> {
if self.recursion_depth >= MAX_RECURSION_DEPTH {
return Err(format!(
"Maximum recursion depth ({}) exceeded",
MAX_RECURSION_DEPTH
));
}
if self.executing_steps.contains(&step_id.to_string()) {
return Err(format!(
"Circular reference detected: step '{}' is already executing",
step_id
));
}
Ok(())
}
/// Enter a nested step execution
fn enter_step(&mut self, step_id: &str) {
self.recursion_depth += 1;
self.executing_steps.push(step_id.to_string());
}
/// Exit a nested step execution
fn exit_step(&mut self) {
self.recursion_depth = self.recursion_depth.saturating_sub(1);
self.executing_steps.pop();
}
/// Typed dependency error for clear handling
///
/// When `current_iteration` is Some(idx), performs iteration-aware lookup:
/// first tries `dep@idx` (same-iteration result), then falls back to plain `dep`
/// (aggregate or pre-loop result).
fn check_dependencies(
&self,
step: &WorkflowStep,
all_step_ids: &std::collections::HashSet<String>,
current_iteration: Option<usize>,
) -> Result<(), DependencyError> {
for dep in &step.depends_on {
// First verify the dependency is a known step ID
if !all_step_ids.contains(dep) {
return Err(DependencyError::Unknown(dep.clone()));
}
// Iteration-aware lookup: try dep@idx first if in loop context
let result = if let Some(idx) = current_iteration {
let iter_key = format!("{}@{}", dep, idx);
self.step_results
.get(&iter_key)
.or_else(|| self.step_results.get(dep))
} else {
self.step_results.get(dep)
};
match result {
Some(result) if result.status == StepStatus::Completed => continue,
Some(result) => {
return Err(DependencyError::NotSatisfied {
dep: dep.clone(),
status: result.status,
});
}
None => {
return Err(DependencyError::NotExecuted(dep.clone()));
}
}
}
Ok(())
}
}
/// Typed dependency error for proper handling
#[derive(Debug, Clone)]
pub enum DependencyError {
/// Dependency ID doesn't exist in workflow definition (always fatal)
Unknown(String),
/// Dependency exists but hasn't been executed yet
NotExecuted(String),
/// Dependency executed but not completed (failed/skipped)
NotSatisfied { dep: String, status: StepStatus },
}
impl std::fmt::Display for DependencyError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
DependencyError::Unknown(dep) => write!(f, "Unknown dependency: '{}'", dep),
DependencyError::NotExecuted(dep) => write!(f, "Dependency '{}' not yet executed", dep),
DependencyError::NotSatisfied { dep, status } => {
write!(
f,
"Dependency '{}' not satisfied (status: {:?})",
dep, status
)
}
}
}
}
impl DependencyError {
/// Returns true if this is a definition error (should always fail)
pub fn is_definition_error(&self) -> bool {
matches!(self, DependencyError::Unknown(_))
}
}
impl WorkflowContext {
/// Set variable
pub fn set_var(&mut self, name: impl Into<String>, value: impl Into<VarValue>) {
self.variables.insert(name.into(), value.into());
}
/// Get variable
pub fn get_var(&self, name: &str) -> Option<&VarValue> {
self.variables.get(name)
}
/// Substitute variables in a string
pub fn substitute(&self, template: &str) -> String {
Self::substitute_impl(template, &self.variables, false)
}
/// Substitute variables with shell-safe quoting to prevent injection.
///
/// Each value is wrapped in single quotes with internal single quotes
/// escaped as `'\''`, which is the standard POSIX shell quoting approach.
/// Use this for any string that will be passed to `sh -c`.
pub fn substitute_shell_safe(&self, template: &str) -> String {
Self::substitute_impl(template, &self.variables, true)
}
fn substitute_impl(
template: &str,
variables: &HashMap<String, VarValue>,
shell_quote: bool,
) -> String {
let mut result = template.to_string();
for (name, value) in variables {
let placeholder = format!("${{{}}}", name);
if let Some(s) = value.as_string() {
let safe = if shell_quote {
Self::shell_quote(&s)
} else {
s
};
result = result.replace(&placeholder, &safe);
}
}
// Also support $name syntax
for (name, value) in variables {
let placeholder = format!("${}", name);
if let Some(s) = value.as_string() {
let safe = if shell_quote {
Self::shell_quote(&s)
} else {
s
};
result = result.replace(&placeholder, &safe);
}
}
result
}
/// POSIX shell quoting: wrap in single quotes, escape internal single quotes.
fn shell_quote(s: &str) -> String {
// Single-quoted strings in POSIX shell treat everything as literal
// except single quotes themselves. Escape them by ending the quoted
// section, adding an escaped single quote, and reopening.
format!("'{}'", s.replace('\'', "'\\''"))
}
/// Evaluate a simple condition
pub fn evaluate_condition(&self, condition: &str) -> bool {
let condition = self.substitute(condition);
// Simple evaluations
if condition == "true" {
return true;
}
if condition == "false" {
return false;
}
// Check for variable existence
if condition.starts_with("defined(") && condition.ends_with(")") {
let var_name = &condition[8..condition.len() - 1];
return self.variables.contains_key(var_name);
}
// Check for step success
if condition.starts_with("success(") && condition.ends_with(")") {
let step_id = &condition[8..condition.len() - 1];
return self
.step_results
.get(step_id)
.map(|r| r.status == StepStatus::Completed)
.unwrap_or(false);
}
// Check for step failure
if condition.starts_with("failed(") && condition.ends_with(")") {
let step_id = &condition[7..condition.len() - 1];
return self
.step_results
.get(step_id)
.map(|r| r.status == StepStatus::Failed)
.unwrap_or(false);
}
// Simple equality check
if condition.contains("==") {
let parts: Vec<&str> = condition.split("==").collect();
if parts.len() == 2 {
return parts[0].trim() == parts[1].trim();
}
}
// Non-empty check
!condition.is_empty() && condition != "0"
}
/// Log a message.
///
/// When the number of log entries exceeds MAX_WORKFLOW_LOG_ENTRIES, the
/// oldest entries are removed to stay within the limit.
pub fn log(&mut self, level: LogLevel, message: impl Into<String>, step_id: Option<String>) {
self.logs.push_back(LogEntry {
timestamp: std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.unwrap_or_default()
.as_secs(),
level,
message: message.into(),
step_id,
});
while self.logs.len() > MAX_WORKFLOW_LOG_ENTRIES {
self.logs.pop_front();
}
}
/// Get elapsed time in milliseconds
pub fn elapsed_ms(&self) -> u64 {
self.started_at
.map(|s| s.elapsed().as_millis() as u64)
.unwrap_or(0)
}
}
/// Type alias for tool handler function
pub type ToolHandler = Box<dyn Fn(&str, &HashMap<String, String>) -> Result<String> + Send + Sync>;
/// Type alias for LLM handler function
pub type LlmHandler = Box<dyn Fn(&str, &[String]) -> Result<String> + Send + Sync>;
/// Workflow executor
pub struct WorkflowExecutor {
/// Registered workflows
workflows: HashMap<String, Workflow>,
/// Tool execution handler (injected)
tool_handler: Option<ToolHandler>,
/// LLM execution handler (injected)
llm_handler: Option<LlmHandler>,
/// Dry-run mode (log but don't execute)
dry_run: bool,
/// Safety checker for validating shell commands before execution
safety_checker: crate::safety::SafetyChecker,
}
impl WorkflowExecutor {
/// Create new executor in live mode
pub fn new() -> Self {
Self {
workflows: HashMap::new(),
tool_handler: None,
llm_handler: None,
dry_run: false,
safety_checker: crate::safety::SafetyChecker::new(
&crate::config::SafetyConfig::default(),
),
}
}
/// Create new executor in dry-run mode
pub fn new_dry_run() -> Self {
Self {
workflows: HashMap::new(),
tool_handler: None,
llm_handler: None,
dry_run: true,
safety_checker: crate::safety::SafetyChecker::new(
&crate::config::SafetyConfig::default(),
),
}
}
/// Create new executor in live mode using the provided safety config.
pub fn new_with_config(safety_config: &crate::config::SafetyConfig) -> Self {
Self {
workflows: HashMap::new(),
tool_handler: None,
llm_handler: None,
dry_run: false,
safety_checker: crate::safety::SafetyChecker::new(safety_config),
}
}
/// Create new executor in dry-run mode using the provided safety config.
pub fn new_dry_run_with_config(safety_config: &crate::config::SafetyConfig) -> Self {
Self {
dry_run: true,
..Self::new_with_config(safety_config)
}
}
/// Set tool handler for executing tool steps
pub fn with_tool_handler(mut self, handler: ToolHandler) -> Self {
self.tool_handler = Some(handler);
self
}
/// Set LLM handler for executing LLM steps
pub fn with_llm_handler(mut self, handler: LlmHandler) -> Self {
self.llm_handler = Some(handler);
self
}
/// Register a workflow
pub fn register(&mut self, workflow: Workflow) {
self.workflows.insert(workflow.name.clone(), workflow);
}
/// Load workflow from YAML string
pub fn load_yaml(&mut self, yaml: &str) -> Result<()> {
let workflow: Workflow = serde_yaml::from_str(yaml)
.map_err(|e| anyhow!("Failed to parse workflow YAML: {}", e))?;
self.register(workflow);
Ok(())
}
/// Load workflow from file
pub fn load_file(&mut self, path: &Path) -> Result<()> {
let content = std::fs::read_to_string(path)?;
self.load_yaml(&content)
}
/// Get workflow by name
pub fn get(&self, name: &str) -> Option<&Workflow> {
self.workflows.get(name)
}
/// List all workflows
pub fn list(&self) -> Vec<&Workflow> {
self.workflows.values().collect()
}
/// List workflows by category
pub fn list_by_category(&self, category: &str) -> Vec<&Workflow> {
self.workflows
.values()
.filter(|w| w.category == category)
.collect()
}
/// Execute a workflow
pub async fn execute(
&self,
name: &str,
inputs: HashMap<String, VarValue>,
working_dir: PathBuf,
) -> Result<WorkflowResult> {
// Start with empty call stack for top-level execution
self.execute_with_call_stack(name, inputs, working_dir, Vec::new())
.await
}
/// Execute a workflow with call stack tracking for cycle detection
async fn execute_with_call_stack(
&self,
name: &str,
inputs: HashMap<String, VarValue>,
working_dir: PathBuf,
call_stack: Vec<String>,
) -> Result<WorkflowResult> {
// Check for workflow-level cycles
if call_stack.contains(&name.to_string()) {
return Err(anyhow!(
"Workflow cycle detected: {} is already in call stack {:?}",
name,
call_stack
));
}
// Check max workflow nesting depth
const MAX_WORKFLOW_DEPTH: usize = 10;
if call_stack.len() >= MAX_WORKFLOW_DEPTH {
return Err(anyhow!(
"Maximum workflow nesting depth ({}) exceeded",
MAX_WORKFLOW_DEPTH
));
}
let workflow = self
.workflows
.get(name)
.ok_or_else(|| anyhow!("Workflow not found: {}", name))?
.clone();
let mut context = WorkflowContext::new(working_dir.clone());
context.started_at = Some(Instant::now());
context.status = WorkflowStatus::Running;
// Store call stack in context for sub-workflow calls
let mut current_stack = call_stack;
current_stack.push(name.to_string());
context.workflow_call_stack = current_stack;
// Set input variables
for (key, value) in inputs {
context.set_var(&key, value);
}
// Set defaults for missing inputs
for input in &workflow.inputs {
if !context.variables.contains_key(&input.name) {
if let Some(ref default) = input.default {
context.set_var(&input.name, default.clone());
} else if input.required {
return Err(anyhow!("Missing required input: {}", input.name));
}
}
}
// Build set of all step IDs for dependency validation (unified with inline paths)
let all_step_ids: std::collections::HashSet<String> =
workflow.steps.iter().map(|s| s.id.clone()).collect();
// Execute steps
'step_loop: for (idx, step) in workflow.steps.iter().enumerate() {
context.current_step = idx;
// Skip steps that were already executed inline by control-flow (condition/loop)
if context.control_flow_managed_steps.contains(&step.id) {
context.log(
LogLevel::Debug,
format!(
"Skipping step {} (already executed inline by control-flow)",
step.id
),
Some(step.id.clone()),
);
continue 'step_loop;
}
// Check dependencies using unified check_dependencies (no iteration context at top level)
if let Err(dep_err) = context.check_dependencies(step, &all_step_ids, None) {
// Definition errors (unknown deps) are always fatal
if dep_err.is_definition_error() {
return Err(anyhow!(
"Step '{}' has invalid dependency: {}",
step.id,
dep_err
));
}
// For required steps, dependency failures are hard failures
if step.required {
context.status = WorkflowStatus::Failed;
context.log(
LogLevel::Error,
format!(
"Required step '{}' cannot run due to unsatisfied dependency: {}",
step.id, dep_err
),
Some(step.id.clone()),
);
context.step_results.insert(
step.id.clone(),
StepResult {
step_id: step.id.clone(),
status: StepStatus::Failed,
output: None,
error: Some(dep_err.to_string()),
duration_ms: 0,
retry_count: 0,
},
);
break 'step_loop;
}
// Optional step with runtime dep failure - skip
context.log(
LogLevel::Warn,
format!(
"Skipping optional step {} due to dependency: {}",
step.id, dep_err
),
Some(step.id.clone()),
);
context.step_results.insert(
step.id.clone(),
StepResult {
step_id: step.id.clone(),
status: StepStatus::Skipped,
output: None,
error: Some(dep_err.to_string()),
duration_ms: 0,
retry_count: 0,
},
);
continue 'step_loop;
}
// Execute step with retries (pass all workflow steps for nested execution)
let result = self
.execute_step_with_retry(step, &mut context, &workflow.steps)
.await;
context.step_results.insert(step.id.clone(), result.clone());
// Check if we should abort
if result.status == StepStatus::Failed && step.required {
context.status = WorkflowStatus::Failed;
context.log(
LogLevel::Error,
format!("Workflow failed at step: {}", step.id),
Some(step.id.clone()),
);
break;
}
}
// Set final status if not already failed
if context.status == WorkflowStatus::Running {
context.status = WorkflowStatus::Completed;
}
// Collect outputs
let mut outputs = HashMap::new();
for output in &workflow.outputs {
if let Some(value) = context.get_var(&output.from) {
outputs.insert(output.name.clone(), value.clone());
}
}
let duration_ms = context.elapsed_ms();
Ok(WorkflowResult {
workflow_name: workflow.name,
status: context.status,
outputs,
step_results: context.step_results,
logs: context.logs,
duration_ms,
})
}
/// Execute a single step with retry logic
async fn execute_step_with_retry(
&self,
step: &WorkflowStep,
context: &mut WorkflowContext,
workflow_steps: &[WorkflowStep],
) -> StepResult {
let start = Instant::now();
let max_attempts = step.retry.max_attempts.max(1);
let mut last_error = None;
for attempt in 0..max_attempts {
if attempt > 0 {
// Calculate delay
let delay = if step.retry.exponential {
step.retry.delay_secs * 2u64.pow(attempt - 1)
} else {
step.retry.delay_secs
};
tokio::time::sleep(Duration::from_secs(delay)).await;
context.log(
LogLevel::Info,
format!("Retrying step {} (attempt {})", step.id, attempt + 1),
Some(step.id.clone()),
);
}
// Apply timeout if specified
let timeout_duration = step
.timeout_secs
.map(Duration::from_secs)
.unwrap_or(Duration::from_secs(300)); // Default 5 min timeout
// Use tokio::select! to ensure the step future is explicitly
// dropped (cancelled) when the timeout fires, preventing
// background work from continuing after timeout.
// The step_fut borrow of `context` must end before we can
// use `context` again, so we scope the select block.
let execution_result = {
let step_fut =
self.execute_step_with_workflow(&step.step_type, context, Some(workflow_steps));
tokio::pin!(step_fut);
tokio::select! {
result = &mut step_fut => Some(result),
_ = tokio::time::sleep(timeout_duration) => {
// Timeout fired: step_fut is dropped at end of this
// block, cancelling it. Any in-flight child processes
// (with kill_on_drop) are also terminated.
None
}
}
// step_fut is dropped here, releasing the borrow on context
};
match execution_result {
Some(Ok(output)) => {
return StepResult {
step_id: step.id.clone(),
status: StepStatus::Completed,
output: Some(output),
error: None,
duration_ms: start.elapsed().as_millis() as u64,
retry_count: attempt,
};
}
Some(Err(e)) => {
last_error = Some(e.to_string());
context.log(
LogLevel::Warn,
format!("Step {} failed: {}", step.id, e),
Some(step.id.clone()),
);
}
None => {
// Timeout elapsed — step future has been cancelled
last_error = Some(format!(
"Step timed out after {} seconds",
timeout_duration.as_secs()
));
context.log(
LogLevel::Warn,
format!(
"Step {} timed out after {}s — task cancelled",
step.id,
timeout_duration.as_secs()
),
Some(step.id.clone()),
);
}
}
}
StepResult {
step_id: step.id.clone(),
status: StepStatus::Failed,
output: None,
error: last_error,
duration_ms: start.elapsed().as_millis() as u64,
retry_count: max_attempts - 1,
}
}
/// Execute a single step (test helper for isolated step testing)
#[cfg(test)]
async fn execute_step_inner(
&self,
step_type: &StepType,
context: &mut WorkflowContext,
) -> Result<VarValue> {
self.execute_step_with_workflow(step_type, context, None)
.await
}
/// Execute a single step with optional workflow context for nested step execution
async fn execute_step_with_workflow(
&self,
step_type: &StepType,
context: &mut WorkflowContext,
workflow_steps: Option<&[WorkflowStep]>,
) -> Result<VarValue> {
match step_type {
StepType::SetVar { name, value } => {
let resolved = context.substitute(value);
context.set_var(name, resolved.clone());
Ok(VarValue::String(resolved))
}
StepType::Log { message, level } => {
let resolved = context.substitute(message);
context.log(*level, &resolved, None);
Ok(VarValue::String(resolved))
}
StepType::Condition {
condition,
then_steps,
else_steps,
} => {
// Mark ALL branch steps as control-flow-managed BEFORE execution
// This prevents unselected branch steps from running in top-level pass
for step_id in then_steps {
context.control_flow_managed_steps.insert(step_id.clone());
}
if let Some(else_ids) = else_steps {
for step_id in else_ids {
context.control_flow_managed_steps.insert(step_id.clone());
}
}
let result = context.evaluate_condition(condition);
let step_ids = if result {
then_steps.clone()
} else {
else_steps.clone().unwrap_or_default()
};
// Execute the selected branch steps if workflow context is available
if let Some(steps) = workflow_steps {
// Build set of all step IDs for dependency validation
let all_step_ids: std::collections::HashSet<String> =
steps.iter().map(|s| s.id.clone()).collect();
let mut results = Vec::new();
for step_id in &step_ids {
// Check for recursion safety
context
.can_recurse(step_id)
.map_err(|e| anyhow!("Recursion error in condition: {}", e))?;
if let Some(step) = steps.iter().find(|s| &s.id == step_id) {
// Check dependencies before execution (with known step validation)
// Condition branches are not iteration-aware, pass None
if let Err(dep_err) =
context.check_dependencies(step, &all_step_ids, None)
{
// Definition errors (unknown deps) are always fatal
if dep_err.is_definition_error() {
return Err(anyhow!(
"Step '{}' has invalid dependency: {}",
step_id,
dep_err
));
}
// For required steps, all dependency errors are hard failures
if step.required {
return Err(anyhow!(
"Required step '{}' has unsatisfied dependency: {}",
step_id,
dep_err
));
}
// Optional step with runtime dep failure - skip
context.log(
LogLevel::Warn,
format!(
"Skipping optional step {} in condition branch: {}",
step_id, dep_err
),
Some(step_id.clone()),
);
context.step_results.insert(
step_id.clone(),
StepResult {
step_id: step_id.clone(),
status: StepStatus::Skipped,
output: None,
error: Some(dep_err.to_string()),
duration_ms: 0,
retry_count: 0,
},
);
continue;
}
context.log(
LogLevel::Info,
format!(
"Condition branch executing step: {} (condition={}, depth={})",
step_id, result, context.recursion_depth
),
Some(step_id.clone()),
);
// Track recursion
context.enter_step(step_id);
// Execute through full step runner to get retry/timeout/step_results
let step_result =
Box::pin(self.execute_step_with_retry(step, context, steps)).await;
context.exit_step();
// Write to step_results for dependency resolution
context
.step_results
.insert(step_id.clone(), step_result.clone());
if step_result.status == StepStatus::Completed {
results.push(step_result.output.unwrap_or(VarValue::Null));
} else if step.required {
return Err(anyhow!(
"Required step '{}' failed in condition branch: {}",
step_id,
step_result.error.unwrap_or_default()
));
}
} else {
return Err(anyhow!("Condition references unknown step: {}", step_id));
}
}
// Return last result or null if no steps
Ok(results.pop().unwrap_or(VarValue::Null))
} else {
// No workflow context - return step IDs for inspection/dry-run
Ok(VarValue::List(
step_ids.into_iter().map(VarValue::String).collect(),
))
}
}
StepType::Input {
prompt,
variable,
default,
} => {
// In non-interactive mode, use default or fail
if let Some(ref default_val) = default {
context.set_var(variable, default_val.clone());
Ok(VarValue::String(default_val.clone()))
} else {
Err(anyhow!(
"Interactive input required for '{}' but not available: {}",
variable,
prompt
))
}
}
StepType::Shell {
command,
working_dir,
} => {
let resolved_cmd = context.substitute_shell_safe(command);
let dir = working_dir
.as_ref()
.map(|d| context.substitute(d))
.unwrap_or_else(|| context.working_dir.to_string_lossy().to_string());
// Validate working_dir is within the project scope
let dir_path = std::path::Path::new(&dir);
let canonical_scope = context
.working_dir
.canonicalize()
.unwrap_or_else(|_| context.working_dir.clone());
if let Ok(canonical_dir) = dir_path.canonicalize() {
if !canonical_dir.starts_with(&canonical_scope) {
anyhow::bail!(
"Workflow working_dir '{}' is outside project scope '{}'",
dir,
context.working_dir.display()
);
}
} else if dir_path.is_absolute() && !dir_path.starts_with(&canonical_scope) {
// If we can't canonicalize (dir doesn't exist yet), at least check prefix
anyhow::bail!(
"Workflow working_dir '{}' is outside project scope '{}'",
dir,
context.working_dir.display()
);
}
if self.dry_run {
context.log(
LogLevel::Info,
format!("[DRY-RUN] Would execute: {} in {}", resolved_cmd, dir),
None,
);
return Ok(VarValue::String(format!("(dry-run) {}", resolved_cmd)));
}
// Safety check before execution
self.safety_checker.check_shell_command(&resolved_cmd)?;
// Execute shell command for real
context.log(
LogLevel::Info,
format!("Executing: {} in {}", resolved_cmd, dir),
None,
);
let (shell, flag) = crate::tools::shell::default_shell();
let shell_future = Command::new(shell)
.arg(flag)
.arg(&resolved_cmd)
.current_dir(&dir)
.kill_on_drop(true)
.output();
const WORKFLOW_SHELL_TIMEOUT_SECS: u64 = 300;
let output = tokio::time::timeout(
Duration::from_secs(WORKFLOW_SHELL_TIMEOUT_SECS),
shell_future,
)
.await
.map_err(|_| {
anyhow!(
"Command '{}' timed out after {}s",
resolved_cmd,
WORKFLOW_SHELL_TIMEOUT_SECS
)
})?
.map_err(|e| anyhow!("Failed to execute command: {}", e))?;
let stdout = String::from_utf8_lossy(&output.stdout).to_string();
let stderr = String::from_utf8_lossy(&output.stderr).to_string();
if !output.status.success() {
let code = output.status.code().unwrap_or(-1);
context.log(
LogLevel::Error,
format!("Command failed (exit {}): {}", code, stderr),
None,
);
return Err(anyhow!(
"Command '{}' failed with exit code {}: {}",
resolved_cmd,
code,
stderr.trim()
));
}
context.log(
LogLevel::Info,
format!("Command output: {}", stdout.trim()),
None,
);
Ok(VarValue::String(stdout))
}
StepType::Tool { name, args } => {
let resolved_args: HashMap<String, String> = args
.iter()
.map(|(k, v)| (k.clone(), context.substitute(v)))
.collect();
if self.dry_run {
context.log(
LogLevel::Info,
format!(
"[DRY-RUN] Would call tool: {} with {:?}",
name, resolved_args
),
None,
);
return Ok(VarValue::String(format!("(dry-run) tool: {}", name)));
}
// Execute tool via handler
if let Some(ref handler) = self.tool_handler {
context.log(
LogLevel::Info,
format!("Calling tool: {} with {:?}", name, resolved_args),
None,
);
let result = handler(name, &resolved_args)?;
Ok(VarValue::String(result))
} else {
Err(anyhow!(
"Tool step '{}' requires a tool_handler - use with_tool_handler() to configure",
name
))
}
}
StepType::Llm {
prompt,
context: ctx_vars,
} => {
let resolved_prompt = context.substitute(prompt);
let resolved_context: Vec<String> =
ctx_vars.iter().map(|c| context.substitute(c)).collect();
if self.dry_run {
context.log(
LogLevel::Info,
format!(
"[DRY-RUN] Would prompt LLM: {} with context: {:?}",
resolved_prompt, resolved_context
),
None,
);
return Ok(VarValue::String(format!(
"(dry-run) llm: {}",
resolved_prompt
)));
}
// Execute LLM call via handler
if let Some(ref handler) = self.llm_handler {
context.log(
LogLevel::Info,
format!("Prompting LLM: {}", resolved_prompt),
None,
);
let result = handler(&resolved_prompt, &resolved_context)?;
Ok(VarValue::String(result))
} else {
Err(anyhow!(
"LLM step requires an llm_handler - use with_llm_handler() to configure"
))
}
}
StepType::Loop {
variable,
items,
do_steps,
} => {
// Mark ALL loop steps as control-flow-managed BEFORE execution
for step_id in do_steps {
context.control_flow_managed_steps.insert(step_id.clone());
}
let items_value = context.substitute(items);
// Simple split by comma for now
let item_list: Vec<&str> = items_value.split(',').map(|s| s.trim()).collect();
let iteration_count = item_list.len();
context.log(
LogLevel::Info,
format!(
"Loop starting: {} iterations over '{}'",
iteration_count, variable
),
None,
);
let mut last_result = VarValue::Null;
// Track per-step aggregated results: (completed_count, failed_count, skipped_count)
let mut step_aggregates: HashMap<String, (u32, u32, u32)> = HashMap::new();
for (idx, item) in item_list.into_iter().enumerate() {
context.set_var(variable, item);
context.log(
LogLevel::Debug,
format!(
"Loop iteration {}/{}: {} = {}",
idx + 1,
iteration_count,
variable,
item
),
None,
);
// Execute do_steps if workflow context is available
if let Some(steps) = workflow_steps {
// Build set of all step IDs for dependency validation
let all_step_ids: std::collections::HashSet<String> =
steps.iter().map(|s| s.id.clone()).collect();
for step_id in do_steps {
// Check for recursion safety
context
.can_recurse(step_id)
.map_err(|e| anyhow!("Recursion error in loop: {}", e))?;
if let Some(step) = steps.iter().find(|s| &s.id == step_id) {
// Check dependencies with iteration-aware lookup (dep@idx first, then global dep)
if let Err(dep_err) =
context.check_dependencies(step, &all_step_ids, Some(idx))
{
// Definition errors (unknown deps) are always fatal
if dep_err.is_definition_error() {
return Err(anyhow!(
"Step '{}' has invalid dependency: {}",
step_id,
dep_err
));
}
// For required steps, all dependency errors are hard failures
if step.required {
return Err(anyhow!(
"Required step '{}' has unsatisfied dependency in loop iteration {}: {}",
step_id, idx + 1, dep_err
));
}
// Optional step with runtime dep failure - skip
context.log(
LogLevel::Warn,
format!(
"Skipping optional step {} in loop iteration {}: {}",
step_id,
idx + 1,
dep_err
),
Some(step_id.clone()),
);
// Store per-iteration result
let iter_key = format!("{}@{}", step_id, idx);
context.step_results.insert(
iter_key,
StepResult {
step_id: step_id.clone(),
status: StepStatus::Skipped,
output: None,
error: Some(dep_err.to_string()),
duration_ms: 0,
retry_count: 0,
},
);
// Track aggregate
let agg =
step_aggregates.entry(step_id.clone()).or_insert((0, 0, 0));
agg.2 += 1; // skipped
continue;
}
// Track recursion
context.enter_step(step_id);
// Execute through full step runner to get retry/timeout/step_results
let step_result =
Box::pin(self.execute_step_with_retry(step, context, steps))
.await;
context.exit_step();
// Store per-iteration result only (step_id@iteration)
let iter_key = format!("{}@{}", step_id, idx);
context.step_results.insert(iter_key, step_result.clone());
// Track aggregate
let agg =
step_aggregates.entry(step_id.clone()).or_insert((0, 0, 0));
match step_result.status {
StepStatus::Completed => agg.0 += 1,
StepStatus::Failed => agg.1 += 1,
StepStatus::Skipped => agg.2 += 1,
_ => {}
}
if step_result.status == StepStatus::Completed {
last_result = step_result.output.unwrap_or(VarValue::Null);
} else if step.required {
return Err(anyhow!(
"Required step '{}' failed in loop iteration {}: {}",
step_id,
idx + 1,
step_result.error.unwrap_or_default()
));
}
} else {
return Err(anyhow!("Loop references unknown step: {}", step_id));
}
}
}
}
// Store aggregated results for each loop step
for (step_id, (completed, failed, skipped)) in step_aggregates {
// Determine overall status: Failed if any failed, Completed if all completed
let status = if failed > 0 {
StepStatus::Failed
} else if skipped > 0 && completed == 0 {
StepStatus::Skipped
} else {
StepStatus::Completed
};
context.step_results.insert(
step_id.clone(),
StepResult {
step_id: step_id.clone(),
status,
output: Some(VarValue::String(format!(
"loop: {} completed, {} failed, {} skipped",
completed, failed, skipped
))),
error: if failed > 0 {
Some(format!("{} iterations failed", failed))
} else {
None
},
duration_ms: 0, // Aggregate doesn't track timing
retry_count: 0,
},
);
}
context.log(
LogLevel::Info,
format!("Loop completed: {} iterations", iteration_count),
None,
);
Ok(last_result)
}
StepType::Pause { message } => {
let resolved = context.substitute(message);
context.log(LogLevel::Info, format!("Paused: {}", resolved), None);
// Pause is informational only - execution continues
// Real interactive pause would require CLI integration
Ok(VarValue::String("paused".to_string()))
}
StepType::SubWorkflow {
workflow_name,
inputs,
} => {
let resolved_inputs: HashMap<String, VarValue> = inputs
.iter()
.map(|(k, v)| (k.clone(), VarValue::String(context.substitute(v))))
.collect();
if self.dry_run {
context.log(
LogLevel::Info,
format!(
"[DRY-RUN] Would call sub-workflow: {} with {:?}",
workflow_name, resolved_inputs
),
None,
);
return Ok(VarValue::String(format!(
"(dry-run) sub-workflow: {}",
workflow_name
)));
}
// Execute sub-workflow if registered
if self.workflows.contains_key(workflow_name) {
context.log(
LogLevel::Info,
format!("Executing sub-workflow: {}", workflow_name),
None,
);
// Use Box::pin to enable async recursion with call stack for cycle detection
let sub_result = Box::pin(self.execute_with_call_stack(
workflow_name,
resolved_inputs,
context.working_dir.clone(),
context.workflow_call_stack.clone(),
))
.await?;
// Merge sub-workflow outputs into current context
for (key, value) in &sub_result.outputs {
context.set_var(key, value.clone());
}
// Log sub-workflow completion
context.log(
LogLevel::Info,
format!(
"Sub-workflow '{}' completed with status: {:?}",
workflow_name, sub_result.status
),
None,
);
if sub_result.is_success() {
Ok(VarValue::String(format!(
"sub-workflow {} completed successfully",
workflow_name
)))
} else {
Err(anyhow!(
"Sub-workflow '{}' failed: {:?}",
workflow_name,
sub_result.failed_steps()
))
}
} else {
Err(anyhow!("Sub-workflow '{}' not found", workflow_name))
}
}
}
}
}
impl Default for WorkflowExecutor {
fn default() -> Self {
Self::new()
}
}
/// Workflow execution result
#[derive(Debug, Clone)]
pub struct WorkflowResult {
/// Workflow name
pub workflow_name: String,
/// Final status
pub status: WorkflowStatus,
/// Output values
pub outputs: HashMap<String, VarValue>,
/// Step results
pub step_results: HashMap<String, StepResult>,
/// Log entries
pub logs: VecDeque<LogEntry>,
/// Total duration in milliseconds
pub duration_ms: u64,
}
impl WorkflowResult {
/// Check if workflow succeeded
pub fn is_success(&self) -> bool {
self.status == WorkflowStatus::Completed
}
/// Get output value
pub fn get_output(&self, name: &str) -> Option<&VarValue> {
self.outputs.get(name)
}
/// Get failed steps
pub fn failed_steps(&self) -> Vec<&StepResult> {
self.step_results
.values()
.filter(|r| r.status == StepStatus::Failed)
.collect()
}
}
/// Built-in workflow templates
pub struct WorkflowTemplates;