Let your OpenClaw AI agent escape its single-machine prison. This toolkit enables your AI assistant to SSH into any Windows computer on your local network — execute diagnostic commands, deploy repair scripts, control Chrome browsers, and read hardware sensors — all without installing additional software on the target machine.
| Pillar | Role | Detail |
|---|---|---|
| SSH Bridge | Command & File Transport | One-click deploy with public key auth, no password prompts |
| Chrome CDP | Browser Control | Headless Chrome + netsh portproxy for remote DevTools access |
| Auto-Deploy | Zero-Config Setup | Single PowerShell script installs SSH, firewall, Chrome debug, auto-start |
| HW Diagnostics | Hardware Health | WMI queries, SMART disk data, event logs, sensor readings via remote scripts |
| Scenario | Before | After |
|---|---|---|
| Remote PC bluescreens | Walk over, manually check Event Viewer | ssh in, AI diagnoses logs in seconds |
| Batch software install | Remote desktop, click through installers | AI uploads script, deploys in parallel |
| Web service down | Manually open browser to test | AI controls remote Chrome via CDP |
| Hardware failure | Plug in monitor, check Device Manager | AI reads sensors, SMART, WMI remotely |
| Multi-machine patrol | Manually log into each machine | AI parallel-SSH collects status |
User: "Check why the remote PC bluescreened"
↓
OpenClaw loads remote-control skill
↓
ssh Administrator@192.168.1.62 "wevtutil qe System /c:5 /f:text"
↓
AI analyzes crash dump, event logs, driver conflicts
↓
Returns diagnosis + suggested fix to user
# 1. On target machine (run once as Administrator)
powershell -ExecutionPolicy Bypass -File aicdragon-remote-setup.ps1
# 2. From OpenClaw, connect and verify
ssh Administrator@<TARGET_IP> "whoami"OpenClaw: Copy SKILL.md to skills/remote-control/. Auto-loads on keywords: 远程 / 操控 / 跨设备 / SSH / 连那台.
Manual: Read references/SETUP_GUIDE.md for step-by-step configuration.
| Component | Min Version |
|---|---|
| Windows (target) | Windows 10 1809+ |
| OpenSSH Server | 8.x+ (auto-installed by script) |
| Chrome (optional) | 100+ (for CDP browser control) |
| PowerShell | 5.1+ |
让 AI 智能体跨越物理边界,直接操控并诊断其他计算机。
传统 AI 助手只能操控它所在的那台电脑。当另一台电脑蓝屏、软件崩溃、需要排查硬件故障时,你只能自己跑过去。这个工具改变了这一点:你的 AI 助手通过 SSH 直接进入目标电脑,执行诊断命令、部署修复脚本、操控浏览器、读取硬件状态。
| 支柱 | 角色 | 说明 |
|---|---|---|
| SSH 桥梁 | 命令与文件传输 | 一键部署公钥免密登录,零交互 |
| Chrome CDP | 浏览器操控 | Headless Chrome + netsh portproxy 端口转发 |
| 自动部署 | 零配置初始化 | 单脚本完成 SSH/防火墙/Chrome调试/开机自启 |
| 硬件诊断 | 硬件健康检测 | 远程读取 WMI/SMART/事件日志/传感器数据 |
用户: "帮我查一下那台电脑为什么蓝屏"
↓
OpenClaw 加载 remote-control skill
↓
ssh Administrator@192.168.1.62 "wevtutil qe System /c:5 /f:text"
↓
AI 分析崩溃转储、事件日志、驱动冲突
↓
返回诊断结果 + 修复建议
# 1. 在目标电脑上(以管理员身份运行一次)
powershell -ExecutionPolicy Bypass -File aicdragon-remote-setup.ps1
# 2. 从 OpenClaw 连接验证
ssh Administrator@<目标IP> "whoami"| 场景 | 以前怎么做 | 现在怎么做 |
|---|---|---|
| 远程电脑蓝屏 | 跑过去手动查事件查看器 | AI SSH 过去,几秒出诊断 |
| 批量装软件 | 远程桌面逐个点安装 | AI 上传脚本,并行部署 |
| 网页服务异常 | 人肉打开浏览器测试 | AI 操控远程 Chrome CDP |
| 硬件故障 | 插显示器查设备管理器 | AI 读传感器/SMART/WMI |
| 多机巡检 | 一台台手动登录 | AI 并行 SSH 采集状态 |
- 跨设备智能体网络 — 一个 OpenClaw 管理所有计算机
- AI 硬件维修 — 读取系统日志、驱动冲突、温度传感器、磁盘 SMART,生成诊断报告
- AI 硬件编程 — 远程控制烧录器、JTAG 调试器、嵌入式开发板
├── SKILL.md # AI Skill 核心(OpenClaw 自动加载)
├── README.md # 中英双语文档
├── scripts/
│ └── aicdragon-remote-setup.ps1 # 一键部署脚本
└── references/
├── SETUP_GUIDE.md # 完整配置与踩坑指南
└── zhang-yiming-skill-full.md # 参考 Skill
MIT