Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add t3chnaztea/arr-stack-skills --skill arr-connectgit clone --depth 1 https://github.com/t3chnaztea/arr-stack-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/t3chnaztea/arr-stack-skills/arr-connect)<a href="https://agentmods.dev/skills/t3chnaztea/arr-stack-skills/arr-connect"><img src="https://agentmods.dev/badge/skills/t3chnaztea/arr-stack-skills/arr-connect.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00175 | $0.02902 |
| Opus 5 | $0.00088 | $0.01451 |
| Sonnet 5 | $0.00035 | $0.00580 |
| Haiku 4.5 | $0.00017 | $0.00290 |
Grade A, and why
arr-connect scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
compatibility: Radarr v4/v5 and Sonarr v3/v4 (API v3 on both). Prowlarr, Lidarr, and Readarr expose the same shape with different resource names. Recipes are plain curl. How it starts
The opening of the file, as written. The whole thing — 257 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Arr Connect
How to reach a *arr instance, what its API will lie to you about, and the two
checks that stop most agent damage before it happens. Every other arr-*
skill assumes this.
The one-minute setup
Every arr app uses a single API key, no OAuth, no session. Find it in
Settings > General > Security, or read it out of config.xml in the app's
config directory:
grep -o '<ApiKey>[^<]*</ApiKey>' /path/to/config/config.xml
Keep it in the environment, never inline:
export ARR_URL=http://arr-host:7878 # Radarr 7878, Sonarr 8989, Prowlarr 9696
export ARR_KEY=... # from config.xml or the UI
curl -sf -H "X-Api-Key: $ARR_KEY" "$ARR_URL/api/v3/system/status" | jq '{appName,version}'
If that returns app name and version, you are connected. A 401 means the key
is wrong; a connection refused means the port or host is wrong; an HTML
response means you hit a reverse proxy that is not forwarding /api.
The key can also travel as ?apikey= in the query string. Prefer the header:
query strings land in access logs and shell history.
The endpoint map
Both apps expose API v3 regardless of the app's own version number. Sonarr v4
is still /api/v3. This surprises people; do not go hunting for /api/v4.
Shared shape across apps:
| Purpose | Radarr | Sonarr |
|---|---|---|
| Library list | GET /api/v3/movie |
GET /api/v3/series |
| One item | GET /api/v3/movie/{id} |
GET /api/v3/series/{id} |
| Add | POST /api/v3/movie |
POST /api/v3/series |
| Search metadata | GET /api/v3/movie/lookup?term= |
GET /api/v3/series/lookup?term= |
| Files | GET /api/v3/moviefile?movieId= |
GET /api/v3/episodefile?seriesId= |
| Quality profiles | GET /api/v3/qualityprofile |
same |
| Root folders | GET /api/v3/rootfolder |
same |
| Queue | GET /api/v3/queue |
same |
| Trigger work | POST /api/v3/command |
same |
| History | GET /api/v3/history |
same |
| Health | GET /api/v3/health |
same |
Sonarr adds GET /api/v3/episode?seriesId= and the per-episode monitor
endpoint, which have no Radarr equivalent because a movie is one item.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 257 lines · 175 tokens per session scan A 4c9c19358076
arr-connect is a skill published in the GitHub repository t3chnaztea/arr-stack-skills (1 stars, last pushed 16d ago), licensed MIT. It adds 175 tokens to every session and 2,902 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
add-cloud-flow
Integrates Power Automate cloud flows into a Power Pages site. Lists available flows, suggests relevant ones based on intent, identifies scenarios and web roles, creates metadata files, and generates client-side code to call flows. Handles both new flow registration and adding already-registered flows to additional…
octopus-architecture
Review system architecture, simplify boundaries, or compare interface designs from repository evidence.
list-connections
Lists Power Platform connections in the current environment. Use when you need a connection ID before adding a connector to a code app.
tidewave-integration
Tidewave MCP runtime tools — debugging, smoke testing, live state inspection, SQL queries, hex docs. Use when evaluating code in a running Phoenix app.
better-auth
Skill for integrating Better Auth - comprehensive TypeScript authentication framework for Cloudflare D1, Next.js, Nuxt, and 15+ frameworks. Use when adding auth, encountering D1 adapter errors, or implementing OAuth/2FA/RBAC features.
cloudflare-email-routing
Cloudflare Email Routing for receiving/sending emails via Workers. Use for email workers, forwarding, allowlists, or encountering Email Trigger errors, worker call failures, SPF issues.