AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Radarr

skill-abra5umente-radarr-skill-skill · by abra5umente

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.

No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add skill-abra5umente-radarr-skill-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-abra5umente-radarr-skill-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
8mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Radarr? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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     # 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 *.json glob to find latest

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.