Agent Skills
› opskat/opskat
› rdp
rdp
GitHub提供Windows远程桌面(RDP)资产配置说明,定义连接参数如主机、端口及凭证。用于在应用内建立交互式桌面会话,不支持命令行执行。
Trigger Scenarios
需要配置或连接Windows远程桌面时
查询RDP资产支持的配置字段
Install
npx skills add opskat/opskat --skill rdp -g -y
SKILL.md
Frontmatter
{
"name": "rdp",
"description": "Windows remote desktop assets. Config fields for put_asset; no command surface — exec is not supported for this type."
}
RDP assets
RDP assets are opened as an interactive desktop session in the app. There is no command
surface: exec is not supported for this type, and there is nothing to script.
Asset config (for put_asset)
| field | type | required | notes |
|---|---|---|---|
host |
string | yes | Hostname or IP |
port |
number | no | Defaults to 3389 |
username |
string | yes | Local or domain account |
password |
string | no | Stored encrypted; never echoed back |
domain |
string | no | Windows domain; omit for local accounts |
width |
number | no | Initial desktop width, defaults to 1280 |
height |
number | no | Initial desktop height, defaults to 720 |
clipboard |
string | no | "true" / "false", defaults to true |
Example:
put_asset(name="win-jump", type="rdp", config={"host":"10.0.1.9","username":"admin","domain":"CORP"})
Version History
- aeb4bc3 Current 2026-07-24 16:28


