terminator-mcp-agent 0.22.11 → 0.22.16

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -236,7 +236,7 @@ The Terminator MCP agent offers two primary workflows for automating desktop tas
236
236
  This is the most powerful and flexible method. You build a workflow step-by-step, using MCP tools to inspect the UI and refine your actions.
237
237
 
238
238
  1. **Inspect the UI**: Start by using `get_focused_window_tree` to understand the structure of your target application. This gives you the roles, names, and IDs of all elements. For performance optimization:
239
- - Use `tree_max_depth: 2` to limit tree depth when you only need shallow inspection
239
+ - Use `tree_max_depth: 30` to limit tree depth when you only need shallow inspection
240
240
  - Use `tree_from_selector: "role:Dialog"` to get subtree from a specific element
241
241
  - Use `tree_from_selector: "true"` to start from the currently focused element
242
242
  - Use `tree_output_format: "compact_yaml"` (default) for readable format or `"verbose_json"` for full data
@@ -721,7 +721,7 @@ The virtual display manager creates a memory-based display context that satisfie
721
721
  - Implement delays between rapid operations
722
722
  - Consider using `include_tree: false` for intermediate steps
723
723
  - For tree extraction tools, optimize with:
724
- - `tree_max_depth: 2` - Limit depth for large trees
724
+ - `tree_max_depth: 30` - Limit depth for large trees
725
725
  - `tree_from_selector: "role:List"` - Get subtree from specific element
726
726
  - `tree_from_selector: "true"` - Start from focused element
727
727
  - `tree_output_format: "compact_yaml"` - Readable format (default) or `"verbose_json"` for full data
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.22.11",
20
- "terminator-mcp-darwin-x64": "0.22.11",
21
- "terminator-mcp-linux-x64-gnu": "0.22.11",
22
- "terminator-mcp-win32-arm64-msvc": "0.22.11",
23
- "terminator-mcp-win32-x64-msvc": "0.22.11"
19
+ "terminator-mcp-darwin-arm64": "0.22.16",
20
+ "terminator-mcp-darwin-x64": "0.22.16",
21
+ "terminator-mcp-linux-x64-gnu": "0.22.16",
22
+ "terminator-mcp-win32-arm64-msvc": "0.22.16",
23
+ "terminator-mcp-win32-x64-msvc": "0.22.16"
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.22.11"
35
+ "version": "0.22.16"
36
36
  }