โ† All skills
Tencent SkillHub ยท Developer Tools

Local Image Search

Fast local image search using macOS Spotlight or fd. Search images by name, date, location, or metadata. Use when users need to find images on their local ma...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fast local image search using macOS Spotlight or fd. Search images by name, date, location, or metadata. Use when users need to find images on their local ma...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/copy_results.sh, scripts/list_all.sh, scripts/search_by_date.sh, scripts/search_by_location.sh, scripts/search_by_name.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Local Image Search

Search local images quickly using macOS Spotlight or fd.

Search by Name

# Using fd (fastest) fd -e jpg -e png -e jpeg -e heic -e webp -e gif -e tiff "pattern" /path/to/search # Using Spotlight mdfind -onlyin /path/to/search "kMDItemDisplayName == '*pattern*'"

Search by Date

# Today mdfind -onlyin ~/Pictures "kMDItemContentTypeTree == 'public.image' && kMDItemFSContentChangeDate > $time.today()" # Last 7 days mdfind -onlyin ~/Pictures "kMDItemContentTypeTree == 'public.image' && kMDItemFSContentChangeDate > $time.now(-604800)" # This month mdfind -onlyin ~/Pictures "kMDItemContentTypeTree == 'public.image' && kMDItemFSContentChangeDate > $time.this_month()"

Search by Location (GPS)

# Has GPS coordinates mdfind "kMDItemContentTypeTree == 'public.image' && kMDItemGPSStatus == 'GPS'" # In specific area (approximate) mdfind "kMDItemContentTypeTree == 'public.image' && kMDItemGPSLatitude > 39 && kMDItemGPSLatitude < 41"

List All Images

# All images in home mdfind "kMDItemContentTypeTree == 'public.image'" # Specific directory only mdfind -onlyin ~/Pictures "kMDItemContentTypeTree == 'public.image'" # Specific types only mdfind -onlyin ~/Pictures "kMDItemContentType == 'public.png'"

Basic Search

scripts/search_by_name.sh - Search images by filename pattern scripts/search_by_date.sh - Search by creation/modification date scripts/list_all.sh - List all images in a directory

Advanced Search

scripts/search_by_location.sh - Search by GPS coordinates scripts/search_by_size.sh - Search by image dimensions scripts/search_similar.sh - Find visually similar images (requires perceptual hash)

Utility

scripts/thumbnail.sh - Generate thumbnails for results scripts/copy_results.sh - Copy search results to destination

Image Types Supported

ExtensionTypejpg/jpegJPEG imagespngPNG imagesheiciPhone photoswebpWebP imagesgifGIF imagestiffTIFF imagesrawRAW camera filesdngDigital negatives

Metadata Search Keys

KeyDescriptionkMDItemDisplayNameFilenamekMDItemFSContentChangeDateModification datekMDItemContentCreationDateCreation datekMDItemPixelWidthImage widthkMDItemPixelHeightImage heightkMDItemGPSLatitudeGPS latitudekMDItemGPSLongitudeGPS longitudekMDItemMakeCamera makekMDItemModelCamera model

Examples

# Find all screenshots ./scripts/search_by_name.sh "Screen Shot" ~/Desktop # Find photos from today ./scripts/search_by_date.sh today ~/Pictures # Find iPhone photos ./scripts/search_by_name.sh "IMG_" ~/Pictures # Copy results to folder ./scripts/search_by_date.sh today ~/Pictures | ./scripts/copy_results.sh ~/Desktop/today_photos

Requirements

macOS (uses Spotlight/mdfind) fd (optional, for faster filename search): brew install fd exiftool (optional, for advanced metadata): brew install exiftool

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/copy_results.sh Scripts
  • scripts/list_all.sh Scripts
  • scripts/search_by_date.sh Scripts
  • scripts/search_by_location.sh Scripts
  • scripts/search_by_name.sh Scripts