From chadpod-viewing-macos-screenshots-claude-code-plugin
View and analyze macOS screenshots. Use when the user mentions screenshots, asks to see what they captured, says "look at my screenshot", "examine my last X screenshots", or wants help with something they screenshotted.
How this skill is triggered — by the user, by Claude, or both
Slash command
/chadpod-viewing-macos-screenshots-claude-code-plugin:viewing-macos-screenshotsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user wants to see or discuss their screenshots:
When the user wants to see or discuss their screenshots:
Determine how many screenshots the user wants:
Find the screenshot location:
defaults read com.apple.screencapture location 2>/dev/null || echo "$HOME/Desktop"
Find the screenshot files (sorted by most recent):
# For N screenshots, use head -N
ls -t "$SCREENSHOT_DIR"/Screenshot*.png "$SCREENSHOT_DIR"/"Screen Shot"*.png 2>/dev/null | head -N
Read each image using the Read tool with the file path(s).
Describe and analyze what you see, then ask if the user has questions or needs help with what's shown.
Activate this skill when the user says things like:
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-3 --plugin chadpod-viewing-macos-screenshots-claude-code-plugin