skills/snagit/SKILL.md
--- Skill name: snagit Skill description: Capture screenshots and recordings using TechSmith Snagit on macOS. Use when asked to take a screenshot, capture a window, record the screen, open Snagit, access Snagit library, or automate screen capture workflows. --- # Snagit — Screen Capture & Recording Automation Automate TechSmith Snagit 2024 on macOS for screenshots, recordings, and library access. ## Default Save Location All screenshots should be saved to `~/Documents/screenshots/` (not Desk
npx skillsauth add abhiroopb/synthetic-mind skills/snagitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automate TechSmith Snagit 2024 on macOS for screenshots, recordings, and library access.
All screenshots should be saved to ~/Documents/screenshots/ (not Desktop).
Use filename format: capture_YYYYMMDD_HHMMSS.png
/Applications/Snagit 2024.appcom.TechSmith.Snagit2024# Open Snagit (launches or activates)
open -a "Snagit 2024"
# Open Snagit Editor
osascript -e 'tell application "Snagit 2024" to activate'
Use AppleScript + System Events to trigger Snagit's capture hotkeys:
# Trigger global capture (Control+Shift+C) — opens Snagit crosshair
osascript -e '
tell application "Snagit 2024" to activate
delay 0.5
tell application "System Events"
keystroke "c" using {control down, shift down}
end tell'
# Image capture (Control+Shift+S)
osascript -e '
tell application "Snagit 2024" to activate
delay 0.5
tell application "System Events"
keystroke "s" using {control down, shift down}
end tell'
# Window capture (Control+Shift+W)
osascript -e '
tell application "Snagit 2024" to activate
delay 0.5
tell application "System Events"
keystroke "w" using {control down, shift down}
end tell'
# Video capture (Control+Shift+V)
osascript -e '
tell application "Snagit 2024" to activate
delay 0.5
tell application "System Events"
keystroke "v" using {control down, shift down}
end tell'
# Fullscreen capture — trigger capture then press F
osascript -e '
tell application "Snagit 2024" to activate
delay 0.5
tell application "System Events"
keystroke "c" using {control down, shift down}
delay 0.3
keystroke "f"
end tell'
When Snagit's interactive mode isn't needed, use macOS screencapture for scripted captures:
# Capture fullscreen to file
screencapture ~/Desktop/screenshot.png
# Capture fullscreen to clipboard
screencapture -c
# Capture with mouse selection (interactive)
screencapture -i ~/Desktop/screenshot.png
# Capture specific window (interactive click)
screencapture -iw ~/Desktop/window.png
# Capture without shadow
screencapture -o ~/Desktop/screenshot.png
# Capture after delay (seconds)
screencapture -T 3 ~/Desktop/screenshot.png
# Open result in Snagit for editing
screencapture ~/Desktop/screenshot.png && open -a "Snagit 2024" ~/Desktop/screenshot.png
# Open Editor
osascript -e '
tell application "Snagit 2024" to activate
delay 0.3
tell application "System Events"
keystroke "e" using {command down, shift down}
end tell'
# Switch to Library view
osascript -e '
tell application "Snagit 2024" to activate
delay 0.3
tell application "System Events"
keystroke "1" using {command down}
end tell'
# Open an existing image in Snagit for annotation
open -a "Snagit 2024" /path/to/image.png
For automated capture-and-save workflows, use screencapture then open in Snagit:
# 1. Capture to temp file
CAPTURE_FILE="$HOME/Desktop/capture_$(date +%Y%m%d_%H%M%S).png"
screencapture -i "$CAPTURE_FILE"
# 2. Open in Snagit for editing/annotation
open -a "Snagit 2024" "$CAPTURE_FILE"
| Location | Path |
|---|---|
| App Data | ~/Library/Group Containers/7TQL462TU8.com.techsmith.snagit/Snagit 2024/ |
| Preferences | defaults read com.TechSmith.Snagit2024 |
| Stamps | ~/Library/Group Containers/7TQL462TU8.com.techsmith.snagit/Snagit 2024/Stamps/ |
| Share History | ~/Library/Group Containers/7TQL462TU8.com.techsmith.snagit/Snagit 2024/ShareHistoryArchivedItems/ |
| Action | Shortcut | |---|---| | Global Capture | Control+Shift+C | | Image Capture | Control+Shift+S | | Window Capture | Control+Shift+W | | Video Capture | Control+Shift+V | | Fullscreen (during capture) | F | | Scroll Horizontally | R | | Scroll Vertically | D | | Cancel Capture | Esc | | Start/Pause Recording | Control+Shift+Space | | Stop Recording | Control+Shift+V |
| Action | Shortcut | |---|---| | Open Editor | Command+Shift+E | | Library View | Command+1 | | Save | Command+S | | Save As | Shift+Command+S | | Copy All | Option+Command+C | | Grab Text (OCR) | Shift+Command+O | | Trim | Shift+Command+X | | Resize Image | Shift+Command+R |
| Tool | Shortcut | |---|---| | Arrow/Line | Control+A | | Text | Control+T | | Callout | Control+D | | Shape | Control+U | | Blur | Control+B | | Step Numbers | Control+S | | Highlighter | Control+H | | Crop | Control+C | | Pen | Control+P |
screencapture -i ~/Desktop/screenshot.pngopen -a "Snagit 2024" ~/Desktop/screenshot.png# Capture multiple windows to Desktop
for i in 1 2 3; do
screencapture -iw "$HOME/Desktop/window_$i.png"
done
# Open all in Snagit
open -a "Snagit 2024" ~/Desktop/window_*.png
screencapture CLItechsmithsnagit://, en-techsmith-snagit://, com.techsmith.snagit2024://testing
Track TV shows and movies with Trakt.tv. Search, get watchlist, history, up-next, recommendations, trending, calendar, ratings, stats, add/remove from watchlist, mark watched, rate, and check in. Use when asked about what to watch, TV shows, movies, watch history, or Trakt.
development
Send and receive SMS messages via Twilio API. Used for text message notifications, forwarding important alerts, and two-way SMS communication.
documentation
Organizes files in the local Downloads folder into proper folders. Use when asked to organize, sort, or file downloaded documents.
tools
Book and manage appointments on Sutter Health MyHealth Online portal. Uses browser automation via Playwright MCP to interact with the patient portal.