terminator-mcp-agent 0.17.1 → 0.17.2

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 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -239,6 +239,7 @@ This is the most powerful and flexible method. You build a workflow step-by-step
239
239
  - Use `tree_max_depth: 2` 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
+ - Use `tree_output_format: "compact_yaml"` (default) for readable format or `"verbose_json"` for full data
242
243
  2. **Build a Sequence**: Create an `execute_sequence` tool call with a series of actions (`click_element`, `type_into_element`, etc.). Use robust selectors (like `role|name` or stable `properties:AutomationId:value` selectors) whenever possible.
243
244
  3. **Capture the Final State**: Ensure the last step in your sequence is an action that returns a UI tree. The `wait_for_element` tool with `include_tree: true` is perfect for this, as it captures the application's state after your automation has run.
244
245
  4. **Extract Structured Data with `output_parser`**: Add the `output_parser` argument to your `execute_sequence` call. Write JavaScript code to parse the final UI tree and extract structured data. If successful, the tool result will contain a `parsed_output` field with your clean JSON data.
@@ -723,6 +724,7 @@ The virtual display manager creates a memory-based display context that satisfie
723
724
  - `tree_max_depth: 2` - Limit depth for large trees
724
725
  - `tree_from_selector: "role:List"` - Get subtree from specific element
725
726
  - `tree_from_selector: "true"` - Start from focused element
727
+ - `tree_output_format: "compact_yaml"` - Readable format (default) or `"verbose_json"` for full data
726
728
 
727
729
  **JavaScript Performance**:
728
730
 
package/package.json CHANGED
@@ -16,10 +16,10 @@
16
16
  ],
17
17
  "name": "terminator-mcp-agent",
18
18
  "optionalDependencies": {
19
- "terminator-mcp-darwin-arm64": "0.17.1",
20
- "terminator-mcp-darwin-x64": "0.17.1",
21
- "terminator-mcp-linux-x64-gnu": "0.17.1",
22
- "terminator-mcp-win32-x64-msvc": "0.17.1"
19
+ "terminator-mcp-darwin-arm64": "0.17.2",
20
+ "terminator-mcp-darwin-x64": "0.17.2",
21
+ "terminator-mcp-linux-x64-gnu": "0.17.2",
22
+ "terminator-mcp-win32-x64-msvc": "0.17.2"
23
23
  },
24
24
  "repository": {
25
25
  "type": "git",
@@ -31,5 +31,5 @@
31
31
  "sync-version": "node ./utils/sync-version.js",
32
32
  "update-badges": "node ./utils/update-badges.js"
33
33
  },
34
- "version": "0.17.1"
34
+ "version": "0.17.2"
35
35
  }