skills$openclaw/radarr
jordyvandomselaar5.4k

by jordyvandomselaar

radarr – OpenClaw Skill

radarr is an OpenClaw Skills integration for coding workflows. Search and add movies to Radarr. Supports collections, search-on-add option.

5.4k stars154 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameradarr
descriptionSearch and add movies to Radarr. Supports collections, search-on-add option. OpenClaw Skills integration.
ownerjordyvandomselaar
repositoryjordyvandomselaar/radarr
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @jordyvandomselaar/radarr
last updatedFeb 7, 2026

Maintainer

jordyvandomselaar

jordyvandomselaar

Maintains radarr in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
radarr.sh
8.9 KB
_meta.json
805 B
SKILL.md
1.9 KB
SKILL.md

name: radarr version: 1.0.1 description: Search and add movies to Radarr. Supports collections, search-on-add option. metadata: {"clawdbot":{"emoji":"🎬","requires":{"bins":["curl","jq"]}}}

Radarr

Add movies to your Radarr library with collection support.

Setup

Create ~/.clawdbot/credentials/radarr/config.json:

{
  "url": "http://localhost:7878",
  "apiKey": "your-api-key",
  "defaultQualityProfile": 1
}
  • defaultQualityProfile: Quality profile ID (run config to see options)

Workflow

  1. Search: search "Movie Name" - returns numbered list
  2. Present results with TMDB links - always show clickable links
  3. Check: User picks a number
  4. Collection prompt: If movie is part of collection, ask user
  5. Add: Add movie or full collection

Important

  • Always include TMDB links when presenting search results to user
  • Format: [Title (Year)](https://themoviedb.org/movie/ID)
  • Uses defaultQualityProfile from config; can override per-add

Commands

Search for movies

bash scripts/radarr.sh search "Inception"

Check if movie exists in library

bash scripts/radarr.sh exists <tmdbId>

Add a movie (searches immediately by default)

bash scripts/radarr.sh add <tmdbId>           # searches right away
bash scripts/radarr.sh add <tmdbId> --no-search  # don't search

Add full collection (searches immediately by default)

bash scripts/radarr.sh add-collection <collectionTmdbId>
bash scripts/radarr.sh add-collection <collectionTmdbId> --no-search

Remove a movie

bash scripts/radarr.sh remove <tmdbId>              # keep files
bash scripts/radarr.sh remove <tmdbId> --delete-files  # delete files too

Always ask user if they want to delete files when removing!

Get root folders & quality profiles (for config)

bash scripts/radarr.sh config
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install radarr?

Run openclaw add @jordyvandomselaar/radarr in your terminal. This installs radarr into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/jordyvandomselaar/radarr. Review commits and README documentation before installing.