← Back to Skills Marketplace
894
Downloads
1
Stars
4
Active Installs
1
Versions
Install in OpenClaw
/install macos-gui-automation
Description
Automate macOS GUI via screen capture and OCR text reading, mouse and keyboard control, window management, and app launching using cliclick, screencapture, t...
README (SKILL.md)
macOS GUI Automation Skill
Capabilities
- Screen Reading: Capture screenshots and OCR text
- Mouse Control: Click, double-click, right-click, move, drag
- Keyboard Input: Type text, press keys, shortcuts
- Window Management: List windows, focus, resize, close
- App Control: Launch, quit, bring to front
Tools Available
cliclick (Mouse/Keyboard)
# Click at coordinates
cliclick c:x,y
# Double click
cliclick dc:x,y
# Right click
cliclick rc:x,y
# Move mouse
cliclick m:x,y
# Drag from to
cliclick dr:x1,y1:x2,y2
# Type text
cliclick t:"text"
# Press key (Enter, Tab, etc.)
cliclick kp:enter
screencapture + tesseract (Screen Reading)
# Capture region to file
screencapture -R x,y,w,h /tmp/screen.png
# Capture full screen
screencapture /tmp/screen.png
# OCR from image
tesseract /tmp/screen.png stdout
# OCR with Chinese support
tesseract /tmp/screen.png stdout -l chi_sim+eng
osascript (AppleScript - Window/App Control)
# List all windows
osascript -e 'tell application "System Events" to get name of every process'
# Get window position/size
osascript -e 'tell application "Finder" to get bounds of window of front window'
# Click menu item
osascript -e 'tell application "System Events" to click menu item "Save" of menu "File" of process "TextEdit"'
Usage Patterns
Read Screen Text
# 1. Capture screen
screencapture -R 100,100,800,600 /tmp/region.png
# 2. OCR
tesseract /tmp/region.png stdout
Click Button at Position
cliclick c:500,300
Type in Field
# Click field first
cliclick c:400,200
# Then type
cliclick t:"hello world"
cliclick kp:enter
Find and Click (OCR + Click)
# 1. Capture and OCR
screencapture /tmp/screen.png
text=$(tesseract /tmp/screen.png stdout)
# 2. Parse coordinates from OCR result or use image recognition
# 3. Click
cliclick c:x,y
Limitations
- Coordinates are absolute (screen resolution dependent)
- No built-in image recognition (need to add OpenCV/sikuli for that)
- OCR accuracy depends on screen DPI and font
- Some apps may not be scriptable via AppleScript
Security Notes
- Requires Accessibility permissions in System Settings
- Run
tccutil reset Accessibilityif permissions issues - Some apps (browsers, secure apps) may block automation
Usage Guidance
This skill appears to do what it says: it captures the screen, runs OCR, and sends mouse/keyboard/window commands. Before installing: (1) confirm you trust the source — the registry 'source' is unknown; (2) install cliclick/tesseract from trusted upstreams if needed; (3) be careful granting Accessibility and Screen Recording — those permissions let the skill control your mouse/keyboard and read screen contents (avoid running while sensitive windows or credentials are visible); (4) note the metadata lacks an OS restriction even though it only works on macOS; and (5) review the included script to ensure it meets your expectations or test in a restricted environment if you are unsure.
Capability Analysis
Type: OpenClaw Skill
Name: macos-gui-automation
Version: 1.0.0
The skill provides standard macOS GUI automation capabilities using well-known tools like cliclick, screencapture, tesseract, and osascript. The functionality implemented in scripts/gui-automation.sh and described in SKILL.md is transparent, well-documented, and strictly aligned with the stated purpose of screen reading and input simulation without any signs of malicious intent or data exfiltration.
Capability Assessment
Purpose & Capability
Name/description, SKILL.md, README, and script all align: they perform macOS GUI automation via cliclick, screencapture, tesseract, and osascript. Minor metadata mismatch: registry declares no OS restriction even though the skill only works on macOS and requires macOS-specific tools and permissions.
Instruction Scope
Runtime instructions and the helper script perform only screenshot capture, OCR, mouse/keyboard actions, and AppleScript calls. They explicitly require Accessibility and Screen Recording permissions (appropriate for this capability). These permissions grant powerful control (mouse/key events and full-screen reading) so granting them should be a conscious decision.
Install Mechanism
No install spec; this is instruction-only plus a small helper script. Nothing is downloaded or installed by the skill itself.
Credentials
The skill requests no environment variables, no credentials, and no config paths. The permissions it asks the user to grant (Accessibility, Screen Recording) are proportionate to GUI automation.
Persistence & Privilege
always:false and normal invocation settings. The skill does not modify other skills or system-wide configs and does not request permanent background presence.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install macos-gui-automation - After installation, invoke the skill by name or use
/macos-gui-automation - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of macOS GUI Automation Skill.
- Automates mouse and keyboard actions using cliclick.
- Captures screenshots and reads on-screen text via screencapture and tesseract OCR.
- Manages app windows and controls apps using osascript and AppleScript.
- Provides usage examples for common automation tasks.
- Notes limitations (e.g., absolute coordinates, no built-in image recognition) and necessary security permissions.
Metadata
Frequently Asked Questions
What is Macos Gui Automation?
Automate macOS GUI via screen capture and OCR text reading, mouse and keyboard control, window management, and app launching using cliclick, screencapture, t... It is an AI Agent Skill for Claude Code / OpenClaw, with 894 downloads so far.
How do I install Macos Gui Automation?
Run "/install macos-gui-automation" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Macos Gui Automation free?
Yes, Macos Gui Automation is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Macos Gui Automation support?
Macos Gui Automation is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Macos Gui Automation?
It is built and maintained by DHDragon (@dhdragon); the current version is v1.0.0.
More Skills