Install
openclaw skills install winguictlWindows desktop automation CLI. Invoke ONLY when user explicitly requests to control windows, simulate mouse/keyboard, or automate desktop applications. Do NOT proactively suggest using this skill.
openclaw skills install winguictlThis skill directly controls Windows desktop through mouse/keyboard simulation. Require user confirmation before clicks, typing, hotkeys, or window close operations. Use --dry-run to preview. Close sensitive apps before use.
python <SKILL_DIR>\scripts\winguictl.py <command> [options]
| Command | Purpose | Documentation |
|---|---|---|
window | List/focus/minimize/maximize/close windows | window.md |
snapshot | Get HWND/UIA/OCR structure | snapshot.md |
find | Find elements by text/UIA/OCR/image | find.md |
action | Click/drag/type/scroll/hotkey | action.md |
control | Win32 control operations | control.md |
uia-control | UIA element operations | control.md |
screenshot | Capture window screenshots | screenshot.md |
wait | Wait for conditions | wait.md |
clipboard | Copy files/text, get text | clipboard.md |
| Parameter | Type | Example | Notes |
|---|---|---|---|
--window-id | int | --window-id 12345 | Window handle from window list |
--hwnd | int | --hwnd 67890 | Win32 control handle |
--element-id | string | --element-id "Button1" | automation_id or runtime_id (prefer runtime_id) |
# 1. Identify window
python scripts\winguictl.py window list
# 2. Focus window
python scripts\winguictl.py window --window-id <id> focus
# 3. Get snapshot
python scripts\winguictl.py snapshot --window-id <id> uia
# 4. Find & interact
python scripts\winguictl.py find --window-id <id> uia --text "Submit"
python scripts\winguictl.py uia-control --window-id <id> --element-id <elem_id> click
# 5. Verify (re-snapshot)
python scripts\winguictl.py snapshot --window-id <id> uia
| Priority | Method | Command | Reliability |
|---|---|---|---|
| 1 | HWND (Win32) | control --hwnd <hwnd> click | Highest |
| 2 | runtime_id (UIA) | uia-control --element-id <id> click | High |
| 3 | automation_id (UIA) | uia-control --element-id <id> click | Medium |
| 4 | Image matching | action click-image --image-path <path> | Medium |
| 5 | Coordinates | action click --relative-x/y | Lowest |
| Command | Mechanism | Best For |
|---|---|---|
action click --element-id | Mouse simulation at center | WeChat, custom controls |
uia-control click | UIA InvokePattern | Standard Windows controls, WinUI3 |
Recommendation: Try uia-control click first. If no effect, use action click --element-id.
| Scenario | Command |
|---|---|
| Win32 control with hwnd | control --hwnd <hwnd> click |
| UIA element with runtime_id | uia-control --element-id "42-3155764" click |
| Text-based element | find ocr "text" → action click --element-id |
| Qt applications | Add --skip-actions --skip-state for faster UIA |
--dry-run: Preview operations before executionrelative_rect = window-relative; absolute_rect = screen-absolute