@denisixnpm/agent-rdp 0.7.0 → 0.7.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 +49 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.2](https://github.com/denisix/agent-rdp/compare/agent-rdp-v0.7.1...agent-rdp-v0.7.2) (2026-08-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **agent-rdp:** Synchronize agent-rdp packages versions
|
|
9
|
+
|
|
10
|
+
## [0.7.1](https://github.com/denisix/agent-rdp/compare/agent-rdp-v0.7.0...agent-rdp-v0.7.1) (2026-08-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
|
|
15
|
+
* **agent-rdp:** Synchronize agent-rdp packages versions
|
|
16
|
+
|
|
3
17
|
## [0.7.0](https://github.com/denisix/agent-rdp/compare/agent-rdp-v0.6.5...agent-rdp-v0.7.0) (2026-08-14)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# agent-rdp
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@denisixnpm/agent-rdp)
|
|
4
|
+
[](https://github.com/denisix/agent-rdp/actions/workflows/ci.yml)
|
|
5
|
+
[](https://github.com/denisix/agent-rdp/actions/workflows/release-please.yml)
|
|
6
|
+
[](#license)
|
|
7
|
+
[](#installation)
|
|
8
|
+
|
|
3
9
|
A CLI tool for AI agents to control Windows Remote Desktop sessions, built on [IronRDP](https://github.com/Devolutions/IronRDP).
|
|
4
10
|
|
|
5
11
|
## Demo
|
|
@@ -35,6 +41,45 @@ npm install -g @denisixnpm/agent-rdp
|
|
|
35
41
|
npx add-skill https://github.com/denisix/agent-rdp
|
|
36
42
|
```
|
|
37
43
|
|
|
44
|
+
### From a GitHub release
|
|
45
|
+
|
|
46
|
+
Each release attaches a standalone binary per platform, plus the OCR models as
|
|
47
|
+
`agent-rdp-models.tar.gz` / `agent-rdp-models.zip`. The models are
|
|
48
|
+
architecture-independent, so they ship once rather than inside every archive.
|
|
49
|
+
|
|
50
|
+
The binary alone covers everything except `locate`; that command needs the
|
|
51
|
+
models, so extract them too and point `AGENT_RDP_MODELS_DIR` at them.
|
|
52
|
+
|
|
53
|
+
**macOS / Linux**
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
tar -xzf agent-rdp-linux-x64.tar.gz -C ~/.local/bin # or agent-rdp-darwin-arm64.tar.gz
|
|
57
|
+
chmod +x ~/.local/bin/agent-rdp
|
|
58
|
+
mkdir -p ~/.local/share/agent-rdp/models
|
|
59
|
+
tar -xzf agent-rdp-models.tar.gz -C ~/.local/share/agent-rdp/models
|
|
60
|
+
export AGENT_RDP_MODELS_DIR="$HOME/.local/share/agent-rdp/models" # add to your shell rc to persist
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
On macOS the release binaries are unsigned, so Gatekeeper quarantines anything
|
|
64
|
+
downloaded from a browser. If you get *"cannot be opened because the developer
|
|
65
|
+
cannot be verified"*, clear the flag:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
xattr -d com.apple.quarantine ~/.local/bin/agent-rdp
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
**Windows (PowerShell)**
|
|
72
|
+
|
|
73
|
+
```powershell
|
|
74
|
+
Expand-Archive agent-rdp-win32-x64.zip -DestinationPath "$env:LOCALAPPDATA\agent-rdp"
|
|
75
|
+
Expand-Archive agent-rdp-models.zip -DestinationPath "$env:LOCALAPPDATA\agent-rdp\models"
|
|
76
|
+
# persist for future sessions (restart the terminal afterwards)
|
|
77
|
+
setx AGENT_RDP_MODELS_DIR "$env:LOCALAPPDATA\agent-rdp\models"
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Installing from npm needs none of this — the models ship inside
|
|
81
|
+
`@denisixnpm/agent-rdp` and are located automatically.
|
|
82
|
+
|
|
38
83
|
### From source
|
|
39
84
|
|
|
40
85
|
```bash
|
|
@@ -49,12 +94,15 @@ bun run build:ts # Build TypeScript
|
|
|
49
94
|
|
|
50
95
|
### Claude Code
|
|
51
96
|
|
|
52
|
-
|
|
97
|
+
One command — installs the [SKILL.md](skills/agent-rdp/SKILL.md) workflow so Claude knows the commands, flags, and gotchas without you explaining them:
|
|
53
98
|
|
|
54
99
|
```bash
|
|
55
100
|
npx add-skill https://github.com/denisix/agent-rdp
|
|
56
101
|
```
|
|
57
102
|
|
|
103
|
+
You don't need to install the CLI separately: the skill installs
|
|
104
|
+
`@denisixnpm/agent-rdp` on first use if it isn't already on PATH.
|
|
105
|
+
|
|
58
106
|
Or install manually:
|
|
59
107
|
|
|
60
108
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@denisixnpm/agent-rdp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "CLI tool for AI agents to control Windows Remote Desktop sessions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
},
|
|
49
49
|
"homepage": "https://github.com/denisix/agent-rdp#readme",
|
|
50
50
|
"optionalDependencies": {
|
|
51
|
-
"@denisixnpm/agent-rdp-darwin-arm64": "^0.7.
|
|
52
|
-
"@denisixnpm/agent-rdp-darwin-x64": "^0.7.
|
|
53
|
-
"@denisixnpm/agent-rdp-linux-x64": "^0.7.
|
|
54
|
-
"@denisixnpm/agent-rdp-linux-arm64": "^0.7.
|
|
55
|
-
"@denisixnpm/agent-rdp-win32-x64": "^0.7.
|
|
56
|
-
"@denisixnpm/agent-rdp-win32-arm64": "^0.7.
|
|
51
|
+
"@denisixnpm/agent-rdp-darwin-arm64": "^0.7.2",
|
|
52
|
+
"@denisixnpm/agent-rdp-darwin-x64": "^0.7.2",
|
|
53
|
+
"@denisixnpm/agent-rdp-linux-x64": "^0.7.2",
|
|
54
|
+
"@denisixnpm/agent-rdp-linux-arm64": "^0.7.2",
|
|
55
|
+
"@denisixnpm/agent-rdp-win32-x64": "^0.7.2",
|
|
56
|
+
"@denisixnpm/agent-rdp-win32-arm64": "^0.7.2"
|
|
57
57
|
}
|
|
58
58
|
}
|