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