Control mouse, keyboard, and automate desktop tasks.
| File | Description |
|---|---|
| mouse_control.py | Mouse clicks and movement |
| keyboard_control.py | Typing and hotkeys |
| screenshot_ocr.py | Screenshot and text extraction |
| ai_automation.py | AI-powered task automation |
| form_filler.sh | Automate form filling |
# Take screenshot
sq auto screenshot --text /tmp/screen.png
# Click at position
sq auto click --x 100 --y 200
# Type text
sq auto type --text "Hello World"
# Press hotkey
sq auto hotkey --keys ctrl+s
# AI automation (natural language)
sq auto automate --task "click the submit button"
# System tools (recommended)
sudo apt-get install xdotool scrot
# Or Python packages
pip install pyautogui Pillow