APOD - Astronomy Picture of the Day Downloader

VerifiedCaution

Downloads the latest Astronomy Picture of the Day from NASA and saves it to the Desktop with a metadata file. Use it when the user requests to fetch or save today's astronomy picture or NASA's picture of the day.

Sby Skills Guide Bot
ContentBeginner
406/2/2026
Claude Code
#apod#astronomy#nasa#picture-of-the-day

Recommended for

Our review

Downloads the latest Astronomy Picture of the Day (APOD) from NASA and saves it to the desktop with metadata.

Strengths

  • Automates daily retrieval of a popular astronomy image
  • Generates a text file with title and description
  • Handles video content gracefully by notifying the user

Limitations

  • Requires Python libraries requests and BeautifulSoup
  • Only works if the NASA website is reachable
  • Overwrites existing files without warning
When to use it

When the user wants a quick way to get today's NASA astronomy picture.

When not to use it

When the user needs images from other sources or older archives.

Security analysis

Caution
Quality score85/100

The skill executes a Python script that fetches content from NASA's website and saves files locally. Network access and file writes are legitimate and to a trusted domain. No destructive or exfiltrating actions are performed.

No concerns found

Examples

Download today's APOD
Download today's APOD
Get astronomy picture of the day
Get the astronomy picture of the day
Fetch NASA's picture of the day
Fetch NASA's picture of the day

name: apod description: Download the latest Astronomy Picture of the Day from NASA. Use when the user asks to download APOD, get today's astronomy picture, fetch NASA's picture of the day, or save astronomy images.

APOD - Astronomy Picture of the Day Downloader

Overview

This skill downloads the latest Astronomy Picture of the Day (APOD) from NASA's website and saves it to your Desktop along with metadata.

Instructions

When the user requests to download APOD or get today's astronomy picture:

  1. Run the download script:

    python3 ~/.claude/skills/apod/download_apod.py
    
  2. The script will:

    • Fetch the latest APOD from https://apod.nasa.gov/apod/astropix.html
    • Download the high-resolution image
    • Save it to ~/Desktop/APOD/APOD_YYYY-MM-DD.{ext}
    • Create a metadata file ~/Desktop/APOD/APOD_YYYY-MM-DD.txt with title, description, and date
  3. Report the result to the user, including:

    • Success/failure status
    • File paths where the image and metadata were saved
    • Any errors encountered

Requirements

The following Python packages must be installed:

pip install requests beautifulsoup4

Special Cases

  • Videos: If APOD is a video (YouTube embed), the script will notify the user and skip the download
  • Network errors: Clear error messages will be displayed if the website is unreachable
  • Existing files: If today's APOD has already been downloaded, it will be overwritten

Examples

User request: "Download today's APOD" Action: Run the script and report that the image was saved to ~/Desktop/APOD/APOD_2025-12-19.png

User request: "Get the astronomy picture of the day" Action: Run the script and confirm the download with file locations

User request: "Fetch NASA's picture of the day" Action: Run the script and show the image title and save location

Related skills