terminator-mcp-agent 0.8.7 → 0.8.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 +10 -10
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -158,11 +158,11 @@ Now, when your MCP client runs `terminator-mcp-agent`, it will use your local bu
|
|
|
158
158
|
"steps": [ // 4️⃣ Ordered actions & control flow
|
|
159
159
|
{
|
|
160
160
|
"tool_name": "open_application",
|
|
161
|
-
"arguments": { "path": "{{app_path}}" }
|
|
161
|
+
"arguments": { "path": "${{app_path}}" }
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"tool_name": "click_element", // 4a. Make sure the UI is reset
|
|
165
|
-
"arguments": { "selector": "{{selectors.btn_clear}}" },
|
|
165
|
+
"arguments": { "selector": "${{selectors.btn_clear}}" },
|
|
166
166
|
"continue_on_error": true
|
|
167
167
|
},
|
|
168
168
|
{
|
|
@@ -171,15 +171,15 @@ Now, when your MCP client runs `terminator-mcp-agent`, it will use your local bu
|
|
|
171
171
|
{
|
|
172
172
|
"tool_name": "type_into_element",
|
|
173
173
|
"arguments": {
|
|
174
|
-
"selector": "{{selectors.calc_window}}",
|
|
175
|
-
"text_to_type": "{{first_number}}"
|
|
174
|
+
"selector": "${{selectors.calc_window}}",
|
|
175
|
+
"text_to_type": "${{first_number}}"
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
]
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"tool_name": "click_element",
|
|
182
|
-
"arguments": { "selector": "{{selectors.btn_plus}}" }
|
|
182
|
+
"arguments": { "selector": "${{selectors.btn_plus}}" }
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"group_name": "Enter Second Number",
|
|
@@ -187,20 +187,20 @@ Now, when your MCP client runs `terminator-mcp-agent`, it will use your local bu
|
|
|
187
187
|
{
|
|
188
188
|
"tool_name": "type_into_element",
|
|
189
189
|
"arguments": {
|
|
190
|
-
"selector": "{{selectors.calc_window}}",
|
|
191
|
-
"text_to_type": "{{second_number}}"
|
|
190
|
+
"selector": "${{selectors.calc_window}}",
|
|
191
|
+
"text_to_type": "${{second_number}}"
|
|
192
192
|
}
|
|
193
193
|
}
|
|
194
194
|
]
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"tool_name": "click_element",
|
|
198
|
-
"arguments": { "selector": "{{selectors.btn_equals}}" }
|
|
198
|
+
"arguments": { "selector": "${{selectors.btn_equals}}" }
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"tool_name": "wait_for_element", // 4c. Capture final UI tree
|
|
202
202
|
"arguments": {
|
|
203
|
-
"selector": "{{selectors.calc_window}}",
|
|
203
|
+
"selector": "${{selectors.calc_window}}",
|
|
204
204
|
"condition": "exists",
|
|
205
205
|
"include_tree": true,
|
|
206
206
|
"timeout_ms": 2000
|
|
@@ -228,7 +228,7 @@ Now, when your MCP client runs `terminator-mcp-agent`, it will use your local bu
|
|
|
228
228
|
|
|
229
229
|
1. **Variables vs. Inputs** – Declare once, override per-run. This is perfect for parameterizing CI pipelines or A/B test data.
|
|
230
230
|
2. **Selectors** – Give every important UI element a *nickname*. It makes long workflows readable and easy to maintain.
|
|
231
|
-
3. **Templating** – `{{ ... }}` lets you reference **any** key inside `variables`, `inputs`, or `selectors`.
|
|
231
|
+
3. **Templating** – `${{ ... }}` (GitHub Actions-style) *or* legacy `{{ ... }}` lets you reference **any** key inside `variables`, `inputs`, or `selectors`. Both syntaxes are supported; the engine uses Mustache-style rendering.
|
|
232
232
|
4. **Groups & Control Flow** – Add `group_name`, `skippable`, `if`, or `continue_on_error` to any step for advanced branching.
|
|
233
233
|
5. **Output Parsing** – Always end with a step that includes the UI tree, then use the declarative JSON DSL to mine the data you need.
|
|
234
234
|
|
package/package.json
CHANGED
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
],
|
|
13
13
|
"name": "terminator-mcp-agent",
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"terminator-mcp-darwin-arm64": "0.8.
|
|
16
|
-
"terminator-mcp-darwin-x64": "0.8.
|
|
17
|
-
"terminator-mcp-linux-x64-gnu": "0.8.
|
|
18
|
-
"terminator-mcp-win32-x64-msvc": "0.8.
|
|
15
|
+
"terminator-mcp-darwin-arm64": "0.8.9",
|
|
16
|
+
"terminator-mcp-darwin-x64": "0.8.9",
|
|
17
|
+
"terminator-mcp-linux-x64-gnu": "0.8.9",
|
|
18
|
+
"terminator-mcp-win32-x64-msvc": "0.8.9"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"sync-version": "node ./utils/sync-version.js",
|
|
28
28
|
"update-badges": "node ./utils/update-badges.js"
|
|
29
29
|
},
|
|
30
|
-
"version": "0.8.
|
|
30
|
+
"version": "0.8.9"
|
|
31
31
|
}
|