terminator-mcp-agent 0.16.3 → 0.16.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -95,6 +95,9 @@ terminator mcp run workflow.yml --start-from "step_12" --end-at "step_13"
|
|
|
95
95
|
|
|
96
96
|
# Run single step
|
|
97
97
|
terminator mcp run workflow.yml --start-from "read_json" --end-at "read_json"
|
|
98
|
+
|
|
99
|
+
# Execute jumps at end boundary (by default jumps are skipped at --end-at-step)
|
|
100
|
+
terminator mcp run workflow.yml --end-at "step_5" --execute-jumps-at-end
|
|
98
101
|
```
|
|
99
102
|
|
|
100
103
|
**Workflow File Formats:**
|
|
@@ -856,7 +859,8 @@ You can run specific portions of a workflow using `start_from_step` and `end_at_
|
|
|
856
859
|
"url": "file://path/to/workflow.yml",
|
|
857
860
|
"start_from_step": "read_json_file", // Start from this step ID
|
|
858
861
|
"end_at_step": "fill_journal_entries", // Stop after this step (inclusive)
|
|
859
|
-
"follow_fallback": false
|
|
862
|
+
"follow_fallback": false, // Don't follow fallback_id beyond end_at_step (default: false)
|
|
863
|
+
"execute_jumps_at_end": false // Don't execute jumps at end_at_step boundary (default: false)
|
|
860
864
|
}
|
|
861
865
|
}
|
|
862
866
|
```
|
|
@@ -867,6 +871,7 @@ You can run specific portions of a workflow using `start_from_step` and `end_at_
|
|
|
867
871
|
- Run from step to end: Only set `start_from_step`
|
|
868
872
|
- Run from beginning to step: Only set `end_at_step`
|
|
869
873
|
- Debug without fallback: Use `follow_fallback: false` to prevent jumping to troubleshooting steps when a bounded step fails
|
|
874
|
+
- Allow jumps at boundary: Use `execute_jumps_at_end: true` to execute jump conditions even at the `end_at_step` boundary (by default, jumps are skipped at the boundary for predictable execution)
|
|
870
875
|
|
|
871
876
|
#### Automatic State Persistence
|
|
872
877
|
|
package/package.json
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
],
|
|
17
17
|
"name": "terminator-mcp-agent",
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"terminator-mcp-darwin-arm64": "0.16.
|
|
20
|
-
"terminator-mcp-darwin-x64": "0.16.
|
|
21
|
-
"terminator-mcp-linux-x64-gnu": "0.16.
|
|
22
|
-
"terminator-mcp-win32-x64-msvc": "0.16.
|
|
19
|
+
"terminator-mcp-darwin-arm64": "0.16.4",
|
|
20
|
+
"terminator-mcp-darwin-x64": "0.16.4",
|
|
21
|
+
"terminator-mcp-linux-x64-gnu": "0.16.4",
|
|
22
|
+
"terminator-mcp-win32-x64-msvc": "0.16.4"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"sync-version": "node ./utils/sync-version.js",
|
|
32
32
|
"update-badges": "node ./utils/update-badges.js"
|
|
33
33
|
},
|
|
34
|
-
"version": "0.16.
|
|
34
|
+
"version": "0.16.4"
|
|
35
35
|
}
|