ktundwal

Screenshot Skill — Development skill for Claude Code

Development community

Claude Code skill to view your most recent screenshot.

How to install Screenshot Skill

This entry records only its repository, not the path inside it, so there is no exact command to give. Open ktundwal/screenshot-skill and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Screenshot Skill does

Claude Code skill to view your most recent screenshot.

Alternatives in Development

  • Screenshot — Capture desktop, app windows, or pixel regions across OS platforms 14.6k ★
  • Review Claudemd — Review recent conversations to find improvements for CLAUDE.md files 6.5k ★
  • Recent Memories — Display the most recent memories and activity from Claude's persistent storage 332 ★

README

screenshot-skill

A Claude Code skill that **takes** screenshots — targets any window by title, plays an audio cue when done, and reads the image directly into the conversation.

Works on **macOS** and **Windows (WSL)**. No ShareX clicks. No manual path copying. Claude does it all.

How it works

  1. You say /screenshot Teams (or Claude decides it needs a screenshot)
  2. Claude brings the Teams window to the foreground, captures it
  3. Chime plays + popup appears: "Screenshot taken — come back to Claude!"
  4. Claude reads the image and responds

Requirements

**macOS**

  • macOS (uses built-in screencapture — no installs needed)
  • Claude Code

**Windows (WSL)**

  • WSL2
  • PowerShell 7 (pwsh.exe) accessible from WSL
  • Claude Code

Install

curl -fsSL https://raw.githubusercontent.com/ktundwal/screenshot-skill/master/install.sh | bash

Detects your OS, installs the right script, asks where to save screenshots (default: `/tmp/screenshots`), and configures everything automatically.

Usage

/screenshot                  # capture full screen
/screenshot Teams            # capture the Teams window
/screenshot "VS Code"        # capture VS Code

If the window title is ambiguous, Claude lists all open windows and asks you to pick one.

Optional: region select & annotation (Windows, requires ShareX)

If [ShareX](https://getsharex.com) is installed, `screenshot.ps1` gains two extra switches. Everything above works exactly the same with or without ShareX — these are additive:

pwsh.exe -File screenshot.ps1 -Region     # you drag to pick an area, ShareX captures it
pwsh.exe -File screenshot.ps1 -Annotate   # after capture, opens ShareX's editor so you can
                                           # draw arrows/boxes/text before handing it back

Both can be combined with `-WindowTitle` or used standalone. If ShareX isn't installed, using `-Region` or `-Annotate` exits with a clear error instead of failing silently.

What g