mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-15 13:36:35 +03:00
Each README is written for a human audience, explaining: - What the skill does (not what format it follows) - What benefit the user gets from installing it - Quick setup and usage patterns - When to load/trigger the skill - What scripts, references, and templates it ships data-scientist already had a README — left unchanged. 48 READMEs added across all skill and bundle directories.
39 lines
1.5 KiB
Markdown
39 lines
1.5 KiB
Markdown
# Radarr & Sonarr Media Library Management
|
|
|
|
A unified CLI skill for managing movies (Radarr) and TV series (Sonarr) from the terminal. Two CLIs, one skill wrapper.
|
|
|
|
## Why Install This Skill
|
|
|
|
When your agent loads this skill, it can **manage your entire *arr media library** without needing a web browser. That means:
|
|
|
|
- **Ask what's in your library** — list movies, TV series, recently added content
|
|
- **Add new media** — search for titles by name, then add them with the right quality profile
|
|
- **Track upcoming releases** — check calendars for scheduled releases
|
|
- **Monitor downloads** — view queue, download history, and wanted/missing episodes
|
|
- **Troubleshoot** — check quality profiles, root folders, and system status
|
|
|
|
## What You Get
|
|
|
|
| Directory | Purpose |
|
|
|-----------|---------|
|
|
| `SKILL.md` | Complete command reference with trigger table for every operation |
|
|
| `scripts/radarr-cli` | CLI tool for Radarr movie management |
|
|
| `scripts/sonarr-cli` | CLI tool for Sonarr TV series management |
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
export ARR_SERVER_RADARR="http://localhost:7878"
|
|
export ARR_KEY_RADARR="your-radarr-api-key"
|
|
export ARR_SERVER_SONARR="http://localhost:8989"
|
|
export ARR_KEY_SONARR="your-sonarr-api-key"
|
|
```
|
|
|
|
## Triggers
|
|
|
|
Load this skill when you hear "Radarr," "Sonarr," "the *arr stack," "add a movie," "find a TV show," "what's in my library," "upcoming releases," "download queue," or anything about media library management.
|
|
|
|
## Requirements
|
|
|
|
Python 3.8+ with `requests` library. API keys from each app's Settings → General.
|