From terminal
Manages ~/Downloads folder with tools to list recent/today/week files, search by name or type, get size/stats, and clear old files. Useful for finding downloads and freeing disk space.
How this skill is triggered — by the user, by Claude, or both
Slash command
/terminal:downloadsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage the ~/Downloads folder with search, stats, and cleanup.
Manage the ~/Downloads folder with search, stats, and cleanup.
Use this skill when users want to:
| Tool | Description | Destructive |
|---|---|---|
downloads_recent | Recent files by modification time | No |
downloads_search | Search files by name pattern | No |
downloads_apps | List .app files | No |
downloads_today | Files modified today | No |
downloads_week | Files modified this week | No |
downloads_stats | Folder size and file counts | No |
downloads_clear | Remove old files | YES |
Recent downloads:
downloads_recent({ limit: 10 })
Search for PDFs:
downloads_search({ query: ".pdf" })
Today's downloads:
downloads_today()
Folder stats:
downloads_stats()
Clear old files:
downloads_clear()
| Downloads | Quarantine |
|---|---|
| Manages files in ~/Downloads | Queries download sources |
| File operations (list, search, delete) | Database queries (where from?) |
| Current state of folder | Historical download records |
npx claudepluginhub nathanvale/side-quest-marketplace-old --plugin terminalTames the Downloads folder with bulk rules, four-bucket triage, and a weekly sweep habit. Clears 80% of files without item-by-item decisions.
Audits macOS disk usage, prunes developer caches (brew, uv, pip, npm, cargo), finds stale large files, and triages Downloads. Activates on disk space or cleanup queries.
Queries voidtools Everything's NTFS index to find files/folders on Windows by name, extension, size, date, or path — faster than dir or Get-ChildItem.