agent-rdp 0.6.1 → 0.6.3

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.3](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.2...agent-rdp-v0.6.3) (2026-01-28)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **agent-rdp:** Synchronize agent-rdp packages versions
9
+
10
+ ## [0.6.2](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.1...agent-rdp-v0.6.2) (2026-01-24)
11
+
12
+
13
+ ### Maintenance
14
+
15
+ * **agent-rdp:** Synchronize agent-rdp packages versions
16
+
3
17
  ## [0.6.1](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.0...agent-rdp-v0.6.1) (2026-01-24)
4
18
 
5
19
 
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 [docs/AUTOMATION.md](docs/AUTOMATION.md).
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
@@ -310,12 +310,12 @@ agent-rdp --json screenshot --base64
310
310
 
311
311
  | Variable | Description |
312
312
  |----------|-------------|
313
- | `AGENT_RDP_SESSION` | Session name (default: "default") |
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
 
@@ -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 [docs/WEBSOCKET.md](docs/WEBSOCKET.md).
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.1",
3
+ "version": "0.6.3",
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-arm64": "0.6.1",
43
- "@agent-rdp/darwin-x64": "0.6.1",
44
- "@agent-rdp/linux-x64": "0.6.1",
45
- "@agent-rdp/linux-arm64": "0.6.1",
46
- "@agent-rdp/win32-x64": "0.6.1",
47
- "@agent-rdp/win32-arm64": "0.6.1"
42
+ "@agent-rdp/darwin-arm64": "0.6.3",
43
+ "@agent-rdp/darwin-x64": "0.6.3",
44
+ "@agent-rdp/linux-x64": "0.6.3",
45
+ "@agent-rdp/linux-arm64": "0.6.3",
46
+ "@agent-rdp/win32-x64": "0.6.3",
47
+ "@agent-rdp/win32-arm64": "0.6.3"
48
48
  },
49
49
  "scripts": {
50
50
  "build:ts": "tsc"