agent-rdp 0.6.1 → 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 +7 -0
- package/README.md +3 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## [0.6.1](https://github.com/thisnick/agent-rdp/compare/agent-rdp-v0.6.0...agent-rdp-v0.6.1) (2026-01-24)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -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/darwin-
|
|
44
|
-
"@agent-rdp/linux-x64": "0.6.
|
|
45
|
-
"@agent-rdp/
|
|
46
|
-
"@agent-rdp/win32-
|
|
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"
|