ss
Find Recent Screenshots
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Find Recent Screenshots
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Automatically implement all sub-issues of an epic in dependency order
Implement a GitHub issue with automated PR creation
End-of-session retrospective. Captures knowledge from any working session (debug, implementation, config, deployment) as reusable scripts, CLAUDE.md procedures, or skill proposals. Run before ending a session to prevent knowledge loss.
Decompose a large GitHub issue into sub-issues and create a tracking draft PR
OWASP-guided security code review for a specific domain or issue
Project kickoff checklist based on lessons learned from previous projects. Generates a tailored checklist and optionally creates GitHub issues.
Basierend auf der SOC-Berufsklassifikation
| name | ss |
| description | Find Recent Screenshots |
| argument-hint | ["number"] |
| user-invocable | true |
Find and display the last N screenshots from ~/Pictures/Screenshots directory.
The user provides: $ARGUMENTS
/ss # Show last 5 screenshots
/ss 10 # Show last 10 screenshots
Do NOT use Glob — it sorts by filename, not by modification time.
Instead, use Bash to get the N most recent files:
ls -t ~/Pictures/Screenshots/*.png | head -[n]
Then use the Read tool to display each screenshot image.
ls -t command to get the N newest file pathsIMPORTANT:
ls -t sorts by actual modification time, which is the correct sort order for finding recent screenshots