terminator-mcp-agent 0.23.28 → 0.23.30
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 +9 -9
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -111,7 +111,7 @@ steps:
|
|
|
111
111
|
url: "https://example.com"
|
|
112
112
|
- tool_name: click_element
|
|
113
113
|
arguments:
|
|
114
|
-
selector: "role:Button
|
|
114
|
+
selector: "role:Button && name:Submit"
|
|
115
115
|
stop_on_error: true
|
|
116
116
|
include_detailed_results: true
|
|
117
117
|
```
|
|
@@ -123,7 +123,7 @@ steps:
|
|
|
123
123
|
- tool_name: validate_element
|
|
124
124
|
id: check_logged_in
|
|
125
125
|
arguments:
|
|
126
|
-
selector: "role:
|
|
126
|
+
selector: "role:Button && name:Logout"
|
|
127
127
|
jumps:
|
|
128
128
|
- if: "check_logged_in_status == 'success'"
|
|
129
129
|
to_id: main_app
|
|
@@ -132,13 +132,13 @@ steps:
|
|
|
132
132
|
- tool_name: click_element
|
|
133
133
|
id: login_flow
|
|
134
134
|
arguments:
|
|
135
|
-
selector: "role:
|
|
135
|
+
selector: "role:Button && name:Login"
|
|
136
136
|
# ... more login steps ...
|
|
137
137
|
|
|
138
138
|
- tool_name: click_element
|
|
139
139
|
id: main_app
|
|
140
140
|
arguments:
|
|
141
|
-
selector: "role:
|
|
141
|
+
selector: "role:Button && name:Dashboard"
|
|
142
142
|
```
|
|
143
143
|
|
|
144
144
|
Tool call wrapper format (`workflow.json`):
|
|
@@ -506,10 +506,10 @@ For additional help, see the [Terminator CLI documentation](../terminator-cli/RE
|
|
|
506
506
|
},
|
|
507
507
|
"selectors": {
|
|
508
508
|
// 3️⃣ Human-readable element shortcuts
|
|
509
|
-
"calc_window": "role:Window
|
|
510
|
-
"btn_clear": "role:Button
|
|
511
|
-
"btn_plus": "role:Button
|
|
512
|
-
"btn_equals": "role:Button
|
|
509
|
+
"calc_window": "role:Window && name:Calculator",
|
|
510
|
+
"btn_clear": "role:Button && name:Clear",
|
|
511
|
+
"btn_plus": "role:Button && name:Plus",
|
|
512
|
+
"btn_equals": "role:Button && name:Equals"
|
|
513
513
|
},
|
|
514
514
|
"steps": [
|
|
515
515
|
// 4️⃣ Ordered actions & control flow
|
|
@@ -736,7 +736,7 @@ steps:
|
|
|
736
736
|
- id: check_button
|
|
737
737
|
tool_name: validate_element
|
|
738
738
|
arguments:
|
|
739
|
-
selector: "role:Button
|
|
739
|
+
selector: "role:Button && name:Submit"
|
|
740
740
|
|
|
741
741
|
# Use both results in script
|
|
742
742
|
- tool_name: run_command
|
package/package.json
CHANGED
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
],
|
|
17
17
|
"name": "terminator-mcp-agent",
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"terminator-mcp-darwin-arm64": "0.23.
|
|
20
|
-
"terminator-mcp-darwin-x64": "0.23.
|
|
21
|
-
"terminator-mcp-linux-x64-gnu": "0.23.
|
|
22
|
-
"terminator-mcp-win32-arm64-msvc": "0.23.
|
|
23
|
-
"terminator-mcp-win32-x64-msvc": "0.23.
|
|
19
|
+
"terminator-mcp-darwin-arm64": "0.23.30",
|
|
20
|
+
"terminator-mcp-darwin-x64": "0.23.30",
|
|
21
|
+
"terminator-mcp-linux-x64-gnu": "0.23.30",
|
|
22
|
+
"terminator-mcp-win32-arm64-msvc": "0.23.30",
|
|
23
|
+
"terminator-mcp-win32-x64-msvc": "0.23.30"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"sync-version": "node ./utils/sync-version.js",
|
|
33
33
|
"update-badges": "node ./utils/update-badges.js"
|
|
34
34
|
},
|
|
35
|
-
"version": "0.23.
|
|
35
|
+
"version": "0.23.30"
|
|
36
36
|
}
|