Skill
claude skill that allows claude to manage your radarr instance
npx -y skills add abra5umente/radarr-skill --skill skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage movies via Radarr - search, add, monitor downloads, check wanted list. Use when user asks about movies to download, checking download queue, adding films to library, or managing their Radarr instance. Triggers on mentions of Radarr, movie downloads, adding movies, download queue, wanted movies.
SKILL.md
3.7 KB, as published. Nobody here has run it
Radarr Skill
Manage user's Radarr movie library via proxy. Large results save to disk (metadata only returned) to preserve context.
Scripts
All at /mnt/skills/user/radarr/scripts/
radarr.py
Main interface for all Radarr operations.
Large results (movies, releases, queue, wanted) return metadata only. Full data saved to file.
# Search for movies (returns full results - typically small)
python3 radarr.py search "The Matrix" 1999
python3 radarr.py search "Interstellar"
# List library (returns count + path only)
python3 radarr.py movies # All movies
python3 radarr.py movies true # Monitored only
# Then grep the saved file to find specific movies
grep -i "hotel" /home/claude/radarr/movies_*.json
# Get movie details (returns full result)
python3 radarr.py movie 123
# Add movie by TMDB ID (get ID from search results)
python3 radarr.py add 603 # The Matrix
# Search for releases (returns count + path only)
python3 radarr.py releases 123
# Then grep for quality/size
grep -i "1080p\|bluray" /home/claude/radarr/releases_*.json
# Download a release
python3 radarr.py download "release-guid" 123
# Check download queue (returns count + path only)
python3 radarr.py queue
grep -i "title" /home/claude/radarr/queue_*.json
# Get wanted/missing movies (returns count + path only)
python3 radarr.py wanted
# System status (returns full result)
python3 radarr.py status
storage.py
Manage cached results.
python3 storage.py list # Show all cached results
python3 storage.py get <filename> # Load specific result
python3 storage.py clear # Clear cache
Cache Location
/home/claude/radarr/
├── search_*.json
├── movies_*.json
├── releases_*.json
├── queue_*.json
└── manifest.json
Typical Workflows
Check if a movie is in library
# 1. Fetch library (saves to file, returns count only)
python3 radarr.py movies
# 2. Grep the file for the movie
grep -i "hotel transylvania" /home/claude/radarr/movies_*.json
Find and add a movie
# 1. Search (returns full results)
python3 radarr.py search "Dune" 2021
# 2. Note the tmdb_id from results
# 3. Add it
python3 radarr.py add 438631
Check what's downloading
python3 radarr.py queue
# If items exist, grep for details
grep -i "title\|progress" /home/claude/radarr/queue_*.json
Find missing movies
python3 radarr.py wanted
grep -i "title" /home/claude/radarr/wanted_*.json
Manually grab a release
# 1. Get movie ID from library
python3 radarr.py movies
grep -i "movie name" /home/claude/radarr/movies_*.json | grep '"id"'
# 2. Search releases
python3 radarr.py releases 123
# 3. Find a good release
grep -i "1080p" /home/claude/radarr/releases_*.json | head -20
# 4. Download preferred release (get guid from grep output)
python3 radarr.py download "release-guid-here" 123
Notes
- Large results (movies, releases, queue, wanted) return metadata only - full data in file
- Small results (search, status, movie details, add) return full data
- Grep the saved files directly, don't pipe stdout
- TMDB IDs are used for adding movies (shown in search results)
- Movie IDs (internal Radarr IDs) are used for releases/details
- Quality profiles and root folders use Radarr defaults
- Files are timestamped, use
*.jsonglob to find latest