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