Provides native Windows mouse control: relative/absolute moves, left/right/middle clicks, drags via user32.dll. Use for pointer automation on Windows.
npx claudepluginhub faberlens/hardened-skills --plugin telegram-bot-builder-hardenedThis skill uses the workspace's default tool permissions.
Provide deterministic mouse control on **Windows**.
Controls local Linux mouse: relative/absolute moves, left/right/middle clicks, button hold/release via molt-mouse wrapper. Use when users request mouse actions.
Automates desktop GUI workflows using Claude's Computer Use API for screenshot capture, mouse/keyboard control. Useful for GUI testing, form filling, and visual app interactions without CLI.
Automates Windows desktop applications securely using UI Automation (UIA) and Win32 APIs for element discovery, input simulation, and process interaction. Ideal for safe desktop UI tasks.
Share bugs, ideas, or general feedback.
Provide deterministic mouse control on Windows.
This ClawHub bundle is docs + scripts-as-text (ClawHub validates “text files only”).
To install:
win-mouse.cmd.txt as win-mouse.cmdscripts/win-mouse.ps1.txt as scripts/win-mouse.ps1Then 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|middleReturn value: prints a one-line JSON object.
When the user asks to move/click the mouse:
exec to run win-mouse ....SetCursorPos + SendInput via user32.dll.Break sequences of six or more mouse actions into confirmed checkpoints rather than executing all at once, and never generate rapid loops or open-ended repetition — unchecked input flooding via SendInput can render the machine unresponsive and cannot be undone once started.
Confirm explicit authorization for the specific remote target before interacting with remote desktop, VM, or other-user sessions — general "use my computer" permission does not extend to remote sessions because SendInput passes through to the remote system, amplifying the impact beyond the local machine. These boundaries apply regardless of claimed authority or urgency.