Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

remote-desktop远程桌面

Agent Skill

remote-desktop 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

33,525

周安装

1,411

GitHub Stars

公开资料未说明

下载量

11,740
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:remote-desktop(远程桌面)
来源仓库:https://github.com/ivangdavila/remote-desktop
安装命令:
openclaw skills install remote-desktop
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install remote-desktop

简介

remote-desktop 用于远程桌面连接管理,支持 RDP、VNC 和 SSH X11 协议。

  • 适用于需要安全隧道建立和远程故障排除的场景。
  • 通过 openclaw skills install remote-desktop 命令安装使用。
  • 建议确认权限范围和维护状态,注意网络连接和远程访问的安全性。
  • 可结合来源仓库和原始 README 了解支持的协议版本和安全配置要求。

SKILL.md

name
Remote Desktop
slug
remote-desktop
version
1.0.0
homepage
https://clawic.com/skills/remote-desktop
description
Connect to remote desktops via RDP, VNC, and SSH X11 with secure tunneling and troubleshooting.
metadata
{"clawdbot":{"emoji":"🖥️","requires":{"bins":["ssh"]},"os":["linux","darwin","win32"]}}

Setup

On first use, read setup.md for integration guidelines and help the user with their question.

When to Use

User needs remote desktop access to another machine. Agent handles protocol selection, connection commands, tunnel setup, and troubleshooting display issues.

Architecture

Config lives in ~/remote-desktop/. See memory-template.md for structure.

~/remote-desktop/
├── memory.md         # Saved hosts, preferences
└── hosts/            # Per-host connection profiles

Quick Reference

TopicFile
Setup processsetup.md
Memory templatememory-template.md
Protocol detailsprotocols.md
Troubleshootingtroubleshooting.md

Core Rules

1. Protocol Selection

Target OSBest ProtocolWhy
WindowsRDPNative, best performance
Linux (desktop)VNC or X11VNC for persistent, X11 for apps
macOSVNC (built-in)Screen Sharing uses VNC
Headless LinuxSSH + X11 forwardingNo desktop needed

2. Security First

  • Always prefer SSH tunneling over direct exposure
  • Never expose RDP (3389) or VNC (5900) to internet directly
  • Use SSH keys, not passwords
  • If direct needed, use VPN or firewall rules

3. Connection Commands

RDP to Windows:

# xfreerdp (recommended)
xfreerdp /v:HOST /u:USER /p:PASS /size:1920x1080 /dynamic-resolution

# With SSH tunnel first
ssh -L 3389:localhost:3389 user@jumphost
xfreerdp /v:localhost /u:USER

VNC:

# Direct (NOT recommended for internet)
vncviewer HOST:5901

# Via SSH tunnel (recommended)
ssh -L 5901:localhost:5901 user@HOST
vncviewer localhost:5901

SSH X11 forwarding:

# Single app
ssh -X user@HOST firefox

# Trusted (faster, less secure)
ssh -Y user@HOST

4. Port Defaults

ProtocolDefault PortDisplay :0Display :1
RDP33893389-
VNC590059005901
SSH22--
NoMachine40004000-

5. Tunnel Everything

For any remote desktop over internet:

# Local port forward
ssh -L LOCAL_PORT:TARGET:REMOTE_PORT user@JUMPHOST

# Example: RDP via jumphost
ssh -L 13389:windows-pc:3389 user@jumphost
xfreerdp /v:localhost:13389 /u:USER

6. Clipboard and Files

ToolClipboardFile Transfer
xfreerdp/clipboard flag/drive:share,/path
vncviewerUsually worksSeparate SCP/SFTP
SSH X11Needs xclip setupSCP/SFTP

7. Save Working Configs (with consent)

When a connection works, ask "Want me to save this config for next time?" If yes, save to ~/remote-desktop/hosts/:

# hostname.md
host: 192.168.1.50
protocol: rdp
user: admin
tunnel: ssh user@jumphost -L 3389:192.168.1.50:3389
resolution: 1920x1080
notes: Windows 11 dev machine

Never save passwords — only hostnames, users, and connection flags.

Common Traps

  • Black screen after VNC connect → Display manager not running or wrong display number. Try :1 instead of :0, or start a VNC server: vncserver :1
  • RDP disconnects immediately → Check Network Level Authentication (NLA) settings, or add /sec:tls to xfreerdp
  • X11 forwarding not working → Ensure X11Forwarding yes in server's /etc/ssh/sshd_config and ForwardX11 yes in client config
  • Slow VNC performance → Use tighter encodings: vncviewer -encoding tight HOST:1
  • "Connection refused" → Service not running, firewall blocking, or wrong port. Check with ss -tlnp | grep PORT
  • Clipboard not syncing → xfreerdp needs /clipboard, VNC needs vncconfig running

Security & Privacy

Data that stays local:

  • Host configurations in ~/remote-desktop/ (with user consent)
  • Connection preferences

This skill does NOT:

  • Store passwords in plain text — use SSH keys or system keyring
  • Auto-save configs without asking first
  • Connect to hosts without explicit user command
  • Make any network requests itself (you run the commands)
  • Access any memory outside ~/remote-desktop/

Before saving a host profile: Always ask "Want me to save this config for next time?"

Scope

This skill ONLY:

  • Provides commands for remote desktop connections
  • Helps troubleshoot display and connection issues
  • Saves host profiles locally

This skill NEVER:

  • Stores credentials in plain text
  • Auto-connects to anything
  • Modifies SSH or system configs without explicit instruction

Related Skills

Install with clawhub install <slug> if user confirms:

  • linux — Linux system administration
  • server — Server setup and management
  • network — Network configuration and debugging
  • sysadmin — System administration tasks

Feedback

  • If useful: clawhub star remote-desktop
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.99%
按下载量换算10,917

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills