terminator-mcp-agent 0.24.8 → 0.24.10
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 +18 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -447,6 +447,24 @@ npx -y terminator-mcp-agent
|
|
|
447
447
|
|
|
448
448
|
The virtual display manager creates a memory-based display context that satisfies Windows UI Automation requirements, enabling terminator to enumerate and interact with UI elements as if a physical display were present.
|
|
449
449
|
|
|
450
|
+
### Action Overlay
|
|
451
|
+
|
|
452
|
+
The action overlay is a semi-transparent full-screen overlay that displays the current action being performed (e.g., "Clicking", "Typing"). This provides visual feedback during automation and is enabled by default.
|
|
453
|
+
|
|
454
|
+
**Disable the Overlay**:
|
|
455
|
+
|
|
456
|
+
Set `TERMINATOR_ACTION_OVERLAY=0` (or `false`, `off`) to disable:
|
|
457
|
+
|
|
458
|
+
```bash
|
|
459
|
+
# Disable action overlay
|
|
460
|
+
export TERMINATOR_ACTION_OVERLAY=0
|
|
461
|
+
|
|
462
|
+
# Or in PowerShell (permanent, requires app restart)
|
|
463
|
+
[Environment]::SetEnvironmentVariable("TERMINATOR_ACTION_OVERLAY", "0", "User")
|
|
464
|
+
```
|
|
465
|
+
|
|
466
|
+
**Note**: Environment variables set with `SetEnvironmentVariable(..., "User")` only take effect for processes started AFTER the variable is set. You may need to restart your MCP client (e.g., Claude Code) for changes to take effect.
|
|
467
|
+
|
|
450
468
|
### Performance Optimization
|
|
451
469
|
|
|
452
470
|
**Large UI Trees**:
|
package/package.json
CHANGED
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
],
|
|
18
18
|
"name": "terminator-mcp-agent",
|
|
19
19
|
"optionalDependencies": {
|
|
20
|
-
"terminator-mcp-win32-arm64-msvc": "0.24.
|
|
21
|
-
"terminator-mcp-win32-x64-msvc": "0.24.
|
|
20
|
+
"terminator-mcp-win32-arm64-msvc": "0.24.10",
|
|
21
|
+
"terminator-mcp-win32-x64-msvc": "0.24.10"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"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.24.
|
|
34
|
+
"version": "0.24.10"
|
|
35
35
|
}
|