terminator-mcp-agent 0.23.5 → 0.23.8
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 +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -453,7 +453,7 @@ The virtual display manager creates a memory-based display context that satisfie
|
|
|
453
453
|
|
|
454
454
|
- Use specific selectors instead of broad element searches
|
|
455
455
|
- Implement delays between rapid operations
|
|
456
|
-
- Consider using `
|
|
456
|
+
- Consider using `include_tree_after_action: false` for intermediate steps
|
|
457
457
|
- For tree extraction tools, optimize with:
|
|
458
458
|
- `tree_max_depth: 30` - Limit depth for large trees
|
|
459
459
|
- `tree_from_selector: "role:List"` - Get subtree from specific element
|
|
@@ -639,7 +639,7 @@ steps:
|
|
|
639
639
|
- id: check_apps
|
|
640
640
|
tool_name: get_applications
|
|
641
641
|
arguments:
|
|
642
|
-
|
|
642
|
+
include_tree_after_action: false
|
|
643
643
|
|
|
644
644
|
# Access the result in JavaScript
|
|
645
645
|
- tool_name: run_command
|
|
@@ -662,7 +662,7 @@ steps:
|
|
|
662
662
|
- tool_name: get_window_tree
|
|
663
663
|
arguments:
|
|
664
664
|
pid: 1234
|
|
665
|
-
|
|
665
|
+
include_tree_after_action: true # Simple boolean form
|
|
666
666
|
run: |
|
|
667
667
|
// Direct variable access - auto-injected!
|
|
668
668
|
const apps = check_apps_result || [];
|
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.8",
|
|
20
|
+
"terminator-mcp-darwin-x64": "0.23.8",
|
|
21
|
+
"terminator-mcp-linux-x64-gnu": "0.23.8",
|
|
22
|
+
"terminator-mcp-win32-arm64-msvc": "0.23.8",
|
|
23
|
+
"terminator-mcp-win32-x64-msvc": "0.23.8"
|
|
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.8"
|
|
36
36
|
}
|