بنقرة واحدة
remove-photo-metadata
Strip all metadata from images for privacy
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Strip all metadata from images for privacy
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Converts webpages, articles, or documents into study flashcards that you can review with spaced repetition
Generate images and videos using Atlas Cloud AI models (Kling, Flux, etc.). Use when the user wants to create AI-generated images or videos.
Optimize Claude Code Pro/Max usage by starting the 5-hour rolling window early morning, giving you more resets during waking hours.
Fetch up-to-date, version-specific library documentation and code examples from Context7. Use this skill whenever the user asks about a specific programming library, framework, or API, or when writing code that depends on a library. Replaces stale training-data knowledge with live docs.
Send yourself a daily text message with a randomly selected or rotating positive affirmation.
Creates an ideal dating profile by writing your bio and choosing the best photos in the right order
| name | remove-photo-metadata |
| description | Strip all metadata from images for privacy |
| metadata | {"author":"ian.zo.computer","category":"Community","display-name":"Remove Photo Metadata","emoji":"🔒"} |
Remove all metadata (Location, EXIF, GPS, camera info, etc.) from photos to protect your privacy before sharing them.
apt-get update && apt-get install -y exiftool
# For a single photo
exiftool -all= "<user's_photo_path>"
# For multiple photos in a directory
exiftool -all= -r "<user's_directory_path>"
# To overwrite originals without creating backups (use with caution)
exiftool -all= -overwrite_original "<user's_photo_path>"
This removes ALL metadata including camera settings, timestamps, GPS coordinates, and any other embedded information from the photos.