agent-rdp 0.6.0 → 0.6.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.
- package/CHANGELOG.md +14 -0
- package/README.md +4 -4
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.2](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.1...agent-rdp-v0.6.2) (2026-01-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **agent-rdp:** Synchronize agent-rdp packages versions
|
|
9
|
+
|
|
10
|
+
## [0.6.1](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.0...agent-rdp-v0.6.1) (2026-01-24)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
|
|
15
|
+
* **agent-rdp:** Synchronize agent-rdp packages versions
|
|
16
|
+
|
|
3
17
|
## [0.6.0](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.5.3...agent-rdp-v0.6.0) (2026-01-24)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -177,7 +177,7 @@ On the remote Windows machine, mapped drives appear in File Explorer as network
|
|
|
177
177
|
|
|
178
178
|
### UI Automation
|
|
179
179
|
|
|
180
|
-
Interact with Windows applications programmatically via the Windows UI Automation API using native patterns (InvokePattern, SelectionItemPattern, TogglePattern, etc.). When enabled, a PowerShell agent is injected into the remote session that captures the accessibility tree and performs actions. Communication between the CLI and the agent uses a
|
|
180
|
+
Interact with Windows applications programmatically via the Windows UI Automation API using native patterns (InvokePattern, SelectionItemPattern, TogglePattern, etc.). When enabled, a PowerShell agent is injected into the remote session that captures the accessibility tree and performs actions. Communication between the CLI and the agent uses a Dynamic Virtual Channel (DVC) for fast bidirectional IPC.
|
|
181
181
|
|
|
182
182
|
For detailed documentation, see [docs/AUTOMATION.md](docs/AUTOMATION.md).
|
|
183
183
|
|
|
@@ -310,12 +310,12 @@ agent-rdp --json screenshot --base64
|
|
|
310
310
|
|
|
311
311
|
| Variable | Description |
|
|
312
312
|
|----------|-------------|
|
|
313
|
-
| `
|
|
313
|
+
| `AGENT_RDP_HOST` | RDP server hostname or IP |
|
|
314
|
+
| `AGENT_RDP_PORT` | RDP server port (default: 3389) |
|
|
314
315
|
| `AGENT_RDP_USERNAME` | RDP username |
|
|
315
316
|
| `AGENT_RDP_PASSWORD` | RDP password |
|
|
317
|
+
| `AGENT_RDP_SESSION` | Session name (default: "default") |
|
|
316
318
|
| `AGENT_RDP_STREAM_PORT` | WebSocket streaming port (0 = disabled) |
|
|
317
|
-
| `AGENT_RDP_STREAM_FPS` | Frame rate for streaming (default: 10) |
|
|
318
|
-
| `AGENT_RDP_STREAM_QUALITY` | JPEG quality 0-100 (default: 80) |
|
|
319
319
|
|
|
320
320
|
## Node.js API
|
|
321
321
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-rdp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "CLI tool for AI agents to control Windows Remote Desktop sessions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/thisnick/agent-rdp#readme",
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@agent-rdp/darwin-
|
|
43
|
-
"@agent-rdp/
|
|
44
|
-
"@agent-rdp/linux-
|
|
45
|
-
"@agent-rdp/win32-
|
|
46
|
-
"@agent-rdp/
|
|
47
|
-
"@agent-rdp/
|
|
42
|
+
"@agent-rdp/darwin-x64": "0.6.2",
|
|
43
|
+
"@agent-rdp/darwin-arm64": "0.6.2",
|
|
44
|
+
"@agent-rdp/linux-x64": "0.6.2",
|
|
45
|
+
"@agent-rdp/win32-x64": "0.6.2",
|
|
46
|
+
"@agent-rdp/win32-arm64": "0.6.2",
|
|
47
|
+
"@agent-rdp/linux-arm64": "0.6.2"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build:ts": "tsc"
|