Install
$ agentstack add skill-hevangel-media-agent-skills-yts ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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 Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
YTS Movie Torrents
YTS is a popular movie torrent site known for high-quality releases with small file sizes. All movies include multiple quality options (720p, 1080p, 2160p/4K).
Site: https://ytz.mx/ — API calls try this host first, then common mirrors (yts.lt, yts.mx) unless you set YTS_API_BASE (no trailing slash; include /api/v2).
Reference
- Code Snippets:
scripts/ - YTS API:
search_movies.pytriesytz.mx, thenyts.lt, thenyts.mx, or setYTS_API_BASE - qBittorrent Integration: See the
qbittorrentskill
Python Package
- pyYify: Python library for the YTS JSON API (package name is historical; it works with YTS-compatible endpoints)
Available Scripts
| Script | Purpose | |--------|---------| | search_movies.py | Search for movies by title, genre, rating | | download_movie.py | Add movie torrent to qBittorrent |
Search Parameters
| Parameter | Type | Description | |-----------|------|-------------| | quality | String | 480p, 720p, 1080p, 2160p, 3D | | minimum_rating | Integer (0-9) | Minimum IMDb rating | | query_term | String | Title, IMDb code, actor/director | | genre | String | action, comedy, drama, sci-fi, etc. | | sort_by | String | title, year, rating, seeds, date_added |
Usage
from pyYify import yify
movies = yify.search_movies("Inception", quality="1080p", minimum_rating=7)
for movie in movies:
print(f"{movie.title} ({movie.year}) - IMDb: {movie.rating}")
for torrent in movie.torrents:
print(f" {torrent.quality}: {torrent.size} - Seeds: {torrent.seeds}")
Direct API Access
import os
import requests
base = os.environ.get("YTS_API_BASE") # e.g. https://ytz.mx/api/v2
if not base:
for candidate in ("https://ytz.mx/api/v2", "https://yts.lt/api/v2", "https://yts.mx/api/v2"):
try:
r = requests.get(f"{candidate}/list_movies.json", params={"limit": 1}, timeout=15)
r.json()
base = candidate
break
except Exception:
continue
if not base:
base = "https://ytz.mx/api/v2"
url = f"{base}/list_movies.json"
params = {"query_term": "Inception", "quality": "1080p", "sort_by": "seeds", "limit": 10}
response = requests.get(url, params=params)
data = response.json()
Integration with qBittorrent
from pyYify import yify
from skills.qbittorrent.scripts.qbittorrent_client import get_client, add_magnet
movies = yify.search_movies("Dune", quality="1080p")
if movies:
torrent = next((t for t in movies[0].torrents if t.quality == "1080p"), movies[0].torrents[0])
client = get_client()
add_magnet(client, torrent.magnet)
Genres
action, adventure, animation, biography, comedy, crime, documentary, drama, family, fantasy, history, horror, music, mystery, romance, sci-fi, sport, thriller, war, western
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: hevangel
- Source: hevangel/media-agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.