terminator-mcp-agent 0.15.7 → 0.15.9
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 +25 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -113,6 +113,31 @@ stop_on_error: true
|
|
|
113
113
|
include_detailed_results: true
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
+
With conditional jumps (`workflow_with_jumps.yml`):
|
|
117
|
+
|
|
118
|
+
```yaml
|
|
119
|
+
steps:
|
|
120
|
+
- tool_name: validate_element
|
|
121
|
+
id: check_logged_in
|
|
122
|
+
arguments:
|
|
123
|
+
selector: "role:button|name:Logout"
|
|
124
|
+
jumps:
|
|
125
|
+
- if: "check_logged_in_status == 'success'"
|
|
126
|
+
to_id: main_app
|
|
127
|
+
reason: "User already logged in - skipping authentication"
|
|
128
|
+
|
|
129
|
+
- tool_name: click_element
|
|
130
|
+
id: login_flow
|
|
131
|
+
arguments:
|
|
132
|
+
selector: "role:button|name:Login"
|
|
133
|
+
# ... more login steps ...
|
|
134
|
+
|
|
135
|
+
- tool_name: click_element
|
|
136
|
+
id: main_app
|
|
137
|
+
arguments:
|
|
138
|
+
selector: "role:button|name:Dashboard"
|
|
139
|
+
```
|
|
140
|
+
|
|
116
141
|
Tool call wrapper format (`workflow.json`):
|
|
117
142
|
|
|
118
143
|
```json
|
package/package.json
CHANGED
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
],
|
|
16
16
|
"name": "terminator-mcp-agent",
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"terminator-mcp-darwin-arm64": "0.15.
|
|
19
|
-
"terminator-mcp-darwin-x64": "0.15.
|
|
20
|
-
"terminator-mcp-linux-x64-gnu": "0.15.
|
|
21
|
-
"terminator-mcp-win32-x64-msvc": "0.15.
|
|
18
|
+
"terminator-mcp-darwin-arm64": "0.15.9",
|
|
19
|
+
"terminator-mcp-darwin-x64": "0.15.9",
|
|
20
|
+
"terminator-mcp-linux-x64-gnu": "0.15.9",
|
|
21
|
+
"terminator-mcp-win32-x64-msvc": "0.15.9"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"sync-version": "node ./utils/sync-version.js",
|
|
31
31
|
"update-badges": "node ./utils/update-badges.js"
|
|
32
32
|
},
|
|
33
|
-
"version": "0.15.
|
|
33
|
+
"version": "0.15.9"
|
|
34
34
|
}
|