# Send Radarr+ to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "radarr-plus",
    "name": "Radarr+",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/vishalchaudhary/radarr-plus",
    "canonicalUrl": "https://clawhub.ai/vishalchaudhary/radarr-plus",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/radarr-plus",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=radarr-plus",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/onboarding.md",
      "references/radarr-api-notes.md",
      "references/setup.md",
      "scripts/check_env.py",
      "scripts/enqueue_track.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "radarr-plus",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T20:17:12.586Z",
      "expiresAt": "2026-05-14T20:17:12.586Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=radarr-plus",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=radarr-plus",
        "contentDisposition": "attachment; filename=\"radarr-plus-0.1.7.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "radarr-plus"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/radarr-plus"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/radarr-plus",
    "downloadUrl": "https://openagent3.xyz/downloads/radarr-plus",
    "agentUrl": "https://openagent3.xyz/skills/radarr-plus/agent",
    "manifestUrl": "https://openagent3.xyz/skills/radarr-plus/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/radarr-plus/agent.md"
  }
}
```
## Documentation

### Radarr+

Request movies from chat and have them added to Radarr (with progress updates back in the same chat).

### What it looks like (example)

Here’s an example of the single-message poster card + caption users will receive when requesting a movie (poster attachment + trailer + rating):

Example message caption:

Shutter Island (2010)
⭐ IMDb: 8.2/10
🎬 Trailer: https://www.youtube.com/watch?v=qdPw9x9h5CY
Added to Radarr ✅ (Ultra-HD, /movies). I’ll post progress + “imported ✅” here.

### Setup (one-time)

Set secrets in ~/.openclaw/.env (never commit these):

RADARR_URL=http://<host>:7878
RADARR_API_KEY=...

Optional (recommended for fewer questions later):

RADARR_DEFAULT_PROFILE=HD-1080p
RADARR_DEFAULT_ROOT=/data/media/movies

Optional (for the “rich” experience we’ll add next):

TMDB_API_KEY=... (poster + trailer)
OMDB_API_KEY=... (IMDb rating)
PLEX_URL=http://<plex-host>:32400
PLEX_TOKEN=...

Verify env + connectivity:

./skills/radarr/scripts/check_env.py
./skills/radarr/scripts/radarr.sh ping

If it fails, check:

Radarr is reachable from the OpenClaw host
API key is correct
URL is correct (http vs https)

### List available quality profiles

./skills/radarr/scripts/radarr.sh profiles

### List configured root folders

./skills/radarr/scripts/radarr.sh roots

### Lookup/search a movie

./skills/radarr/scripts/radarr.sh lookup --compact "inception"
./skills/radarr/scripts/radarr.sh lookup --compact "tmdb:603"

### Add a movie (preferred: TMDB id)

./skills/radarr/scripts/radarr.sh add --tmdb 603 --profile "HD-1080p" --root "/data/media/movies" --monitor --search

### Add a movie (by title; optionally prefer a year)

./skills/radarr/scripts/radarr.sh add --term "Dune" --year 2021 --profile "HD-1080p" --root "/data/media/movies" --monitor --search

### Chat workflow (recommended)

When the user says “request/add <movie>” (DM or group):

### 1) Lookup

Run:

./skills/radarr/scripts/radarr.sh lookup --compact "<movie>"

If there are multiple plausible matches, ask the user to choose (year or TMDB id).

### 2) Resolve missing config by prompting

Resolve defaults from env (and fetch prompt options when missing):

./skills/radarr/scripts/resolve_defaults.py

If defaults are missing, prompt the user to pick one of the returned options:

options.profiles[]
options.roots[]

(If defaults exist, use them silently.)

### 3) Optional rich “movie card” (add-ins)

If TMDB_API_KEY is set, build a movie card:

./skills/radarr/scripts/movie_card.py --tmdb <id>

If the output includes posterUrl, you can download it and attach it:

./skills/radarr/scripts/fetch_asset.py --url "<posterUrl>" --out "./outbound/radarr/<tmdbId>.jpg"

If OMDB_API_KEY is set and an IMDb id is known, the card will include IMDb rating.

### 4) Add to Radarr

Use TMDB when possible:

./skills/radarr/scripts/radarr.sh add --tmdb <id> --profile "<profile>" --root "<root>" --monitor --search

### 5) Track progress + notify in the same chat (Radarr-only, polling)

This skill provides a file-based tracker queue:

Enqueue tracking for the same chat where the request came from (DM or group):

./skills/radarr/scripts/enqueue_track.py --channel telegram --target "<chatId>" --movie-id <id> --title "<title>" --year <year>

A periodic dispatcher should run:

./skills/radarr/scripts/poll_and_queue.py

This will create outbox items under ./state/radarr/outbox/ that your OpenClaw cron runner can send.

### 6) Plex link (optional add-in)

If Plex is configured, try to produce a Plex web URL:

./skills/radarr/scripts/plex_link.py --title "<title>" --year <year>

### References

Onboarding: references/onboarding.md
Setup: references/setup.md
API notes: references/radarr-api-notes.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: vishalchaudhary
- Version: 0.1.7
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T20:17:12.586Z
- Expires at: 2026-05-14T20:17:12.586Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/radarr-plus)
- [Send to Agent page](https://openagent3.xyz/skills/radarr-plus/agent)
- [JSON manifest](https://openagent3.xyz/skills/radarr-plus/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/radarr-plus/agent.md)
- [Download page](https://openagent3.xyz/downloads/radarr-plus)