4.8k★by lurklight
win-mouse-native – OpenClaw Skill
win-mouse-native is an OpenClaw Skills integration for writing workflows. Native Windows mouse control (move, click, drag) via user32.dll. Use when the user asks you to move the mouse, click, drag, or automate pointer actions on Windows.
Skill Snapshot
| name | win-mouse-native |
| description | Native Windows mouse control (move, click, drag) via user32.dll. Use when the user asks you to move the mouse, click, drag, or automate pointer actions on Windows. OpenClaw Skills integration. |
| owner | lurklight |
| repository | lurklight/win-mouse-native |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lurklight/win-mouse-native |
| last updated | Feb 7, 2026 |
Maintainer

name: win-mouse-native description: Native Windows mouse control (move, click, drag) via user32.dll. Use when the user asks you to move the mouse, click, drag, or automate pointer actions on Windows.
Win Mouse Native
Provide deterministic mouse control on Windows.
Commands (local)
This ClawHub bundle is docs + scripts-as-text (ClawHub validates “text files only”).
To install:
- Save
win-mouse.cmd.txtaswin-mouse.cmd - Save
scripts/win-mouse.ps1.txtasscripts/win-mouse.ps1
Then run:
win-mouse move <dx> <dy>(relative)win-mouse abs <x> <y>(absolute screen coords)win-mouse click left|right|middlewin-mouse down left|right|middlewin-mouse up left|right|middle
Return value: prints a one-line JSON object.
OpenClaw usage
When the user asks to move/click the mouse:
- If the user didn’t give coordinates/deltas, ask.
- Use
execto runwin-mouse .... - Prefer small, reversible actions first (tiny move, single click) when unsure.
Notes
- Windows only.
- Uses Win32
SetCursorPos+SendInputvia user32.dll.
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install win-mouse-native?
Run openclaw add @lurklight/win-mouse-native in your terminal. This installs win-mouse-native into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lurklight/win-mouse-native. Review commits and README documentation before installing.
