ss
Find Recent Screenshots
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Find Recent Screenshots
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| 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