The core TapKit workflow: see the screen, act on it, check the result.
Screenshot, tap, verify
# 1. See what's on screen
tapkit screenshot --open
# 2. Tap the Settings icon (at coordinates you see in the screenshot)
tapkit tap 60 740
# 3. Verify it worked
tapkit screenshot --open
# 4. Scroll down in Settings
tapkit swipe up
# 5. Go home
tapkit home
Coordinates match the screenshot pixels at 1:1. If the Settings icon appears at pixel (60, 740) in your screenshot, use tapkit tap 60 740. No scaling math needed.
Common patterns
# Take a screenshot
tapkit screenshot
# Saved to ./screenshot-2026-03-21-14-30-00.png
# Open it immediately
tapkit screenshot --open
# Open an app
tapkit open "Twitter"
# Type some text
tapkit type "Hello from TapKit!"
# Swipe up
tapkit swipe up
Next steps
Now you’re ready to explore the full command reference or set up agent integration.