agent-rdp 0.6.2 → 0.6.5
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 +21 -0
- package/README.md +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.5](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.4...agent-rdp-v0.6.5) (2026-02-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **agent-rdp:** Synchronize agent-rdp packages versions
|
|
9
|
+
|
|
10
|
+
## [0.6.4](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.3...agent-rdp-v0.6.4) (2026-02-26)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
|
|
15
|
+
* **agent-rdp:** Synchronize agent-rdp packages versions
|
|
16
|
+
|
|
17
|
+
## [0.6.3](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.2...agent-rdp-v0.6.3) (2026-01-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Maintenance
|
|
21
|
+
|
|
22
|
+
* **agent-rdp:** Synchronize agent-rdp packages versions
|
|
23
|
+
|
|
3
24
|
## [0.6.2](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.1...agent-rdp-v0.6.2) (2026-01-24)
|
|
4
25
|
|
|
5
26
|
|
package/README.md
CHANGED
|
@@ -179,7 +179,7 @@ On the remote Windows machine, mapped drives appear in File Explorer as network
|
|
|
179
179
|
|
|
180
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
|
-
For detailed documentation, see [
|
|
182
|
+
For detailed documentation, see [AUTOMATION.md](https://github.com/thisnick/agent-rdp/blob/main/docs/AUTOMATION.md).
|
|
183
183
|
|
|
184
184
|
```bash
|
|
185
185
|
# Connect with automation enabled
|
|
@@ -412,7 +412,7 @@ await rdp.connect({...});
|
|
|
412
412
|
const streamUrl = rdp.getStreamUrl(); // "ws://localhost:9224"
|
|
413
413
|
```
|
|
414
414
|
|
|
415
|
-
For the complete WebSocket protocol specification (message types, clipboard flow, input handling), see [
|
|
415
|
+
For the complete WebSocket protocol specification (message types, clipboard flow, input handling), see [WEBSOCKET.md](https://github.com/thisnick/agent-rdp/blob/main/docs/WEBSOCKET.md).
|
|
416
416
|
|
|
417
417
|
## Architecture
|
|
418
418
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-rdp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.5",
|
|
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/darwin-
|
|
44
|
-
"@agent-rdp/linux-x64": "0.6.
|
|
45
|
-
"@agent-rdp/
|
|
46
|
-
"@agent-rdp/win32-arm64": "0.6.
|
|
47
|
-
"@agent-rdp/
|
|
42
|
+
"@agent-rdp/darwin-arm64": "0.6.5",
|
|
43
|
+
"@agent-rdp/darwin-x64": "0.6.5",
|
|
44
|
+
"@agent-rdp/linux-x64": "0.6.5",
|
|
45
|
+
"@agent-rdp/linux-arm64": "0.6.5",
|
|
46
|
+
"@agent-rdp/win32-arm64": "0.6.5",
|
|
47
|
+
"@agent-rdp/win32-x64": "0.6.5"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build:ts": "tsc"
|