lirrensi/agent-sommelier · Archived

screenshot

Take screenshots from the terminal using the screenshot CLI tool. Use this skill when the user wants to capture the screen or a region, save screenshots to files, or integrate screenshot capture into scripts. Supports cross-platform (Windows/macOS/Linux) with automatic fallback to native tools.

First seen Mar 5, 2026

Installation

$ npx skills add lirrensi/agent-sommelier --skill screenshot

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from lirrensi/agent-sommelier · top by installs.

npx skills add lirrensi/agent-sommelier

Browse all from lirrensi/agent-sommelier

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
License LICENSE
Default branch main
Open issues 1
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,705 B
  • docs SUMMARY.md 313 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 18 installs

SKILL.md

Screenshot Skill

Take screenshots from the terminal.

Installation Check

screenshot --help

If not installed:

uv tool install "git+https://github.com/lirrensi/agent-sommelier"

Usage

Auto-named Screenshot

screenshot
# Outputs: C:\Users\...\Temp\agentcli_screenshots\screenshot_20260305_160405.png

Named Screenshot

screenshot output.png
screenshot /path/to/screenshot.png

Output

The command outputs the path to the saved screenshot, making it easy to use in scripts:

# Capture and open
screenshot | xargs open

# Capture and send
screenshot | xargs curl -F "image=@-" http://api/upload

# Capture with timestamp
SCREENSHOT=$(screenshot)
echo "Saved to: $SCREENSHOT"

Examples

# Quick capture
screenshot

# Save to specific location
screenshot ~/Desktop/bug_report.png

# In a script
screenshot "/tmp/screenshot_$(date +%s).png"

# Capture and notify
notify "Screenshot" "$(screenshot)"

Platform Support

Uses the mss library for cross-platform screenshots:

  • Windows: Direct screen capture
  • macOS: Direct screen capture
  • Linux: Direct screen capture (X11/Wayland)

If mss is not available, falls back to native tools:

  • Linux: gnome-screenshot, scrot, import, flameshot
  • macOS: screencapture
  • Windows: PowerShell with .NET