Skip to content

fancydirty/mediary-scout

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

478 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mediary Scout

An agent-driven media library for your cloud drives.

CI license TypeScript Next.js Postgres self-hosted only PRs welcome live demo

Quick start · Deploy guide · Live demo ↗ · 中文文档

You ask for a movie, show, or anime; an LLM agent scouts resources across your indexers, transfers the best match into your own 115 / Quark / 光鸭 drive, verifies what landed, and keeps tracking what's still missing.

Mediary Scout — search a title, hit 获取, and the agent searches, transfers, and verifies it into your drive

Above: the read-only live demo — search → 获取 → the agent works through search, transfer, and verification.

Disclaimer. Mediary Scout is open-source, self-hosted software. It is not offered, and never will be offered, as a hosted service — you run your own instance and bring your own drive / LLM / metadata credentials. It performs the same kinds of file operations you could do by hand in your own cloud drive. See docs/distribution-and-legal-positioning.md for the project's stance.

Contents

What it is

Most "media automation" either searches well but doesn't know what you're actually missing, or moves files but never verifies what landed. Mediary Scout treats acquisition as a state problem, driven by an agent that acts from evidence, not vibes:

  • Multi-drive, brand-extensible — 115, Quark, and 光鸭 (GuangYaPan) today, each a first-class workspace (a tree model: one account, many drives). Adding a new drive brand is a contained plugin.
  • Agent-driven selection — the agent reads real search results and picks by quality preference, Chinese-subtitle needs, and de-duplication, then verifies the transfer after it happens.
  • Tracking & scheduled gap-fill — season-level state machine; a scheduled sweep comes back only for shows that still have missing episodes.
  • Cloud-native — it transfers shares/magnets straight into your drive (秒传 / save), it does not download to a local disk.

It's for advanced self-hosters comfortable with their own cloud-drive accounts and credentials — not a one-click consumer product.

Features

Search → acquire — find a title, hit 获取, the agent takes over search
Library wall — what you have, per drive, with missing / airing badges library
Show detail — season coverage, gaps, tracking state show
Realtime activity — a live queue + agent action ticker while it works activity
Notifications — per-acquisition + daily digest, multi-channel push notifications
Settings — drives, quality, language, LLM (BYO-key), Prowlarr, PanSou settings

Multiple drives appear as a workspace switcher with per-brand icons:

drive switcher

Architecture

A web app enqueues work; a long-running worker drives a sandboxed agent that has narrow, audited powers while the deterministic workflow owns every side effect and re-reads real state to verify.

flowchart LR
    UI["Web UI<br/>(Next.js)"] -->|enqueue| Q["Postgres queue<br/>+ run state"]
    Q --> W["In-process worker"]
    W --> AG["V2 sandbox agent"]
    AG -->|search| SRC["PanSou / Prowlarr"]
    AG -->|transfer| DR["115 / Quark / 光鸭 drive"]
    AG -->|read back| DR
    AG -->|verify + mark| Q
    Q -->|realtime| UI
    CRON["Scheduled sweep"] -->|gaps only| Q
Loading
  • State lives in Postgres the whole way, so runs are resumable across worker restarts (the agent rebuilds from real drive + DB state, not cached chat history).
  • Metadata comes from TMDB (with a built-in proxy fallback so it works out of the box); resource search from PanSou and optionally Prowlarr (torrent/magnet indexers).

Quick start

The fastest path is Docker Compose (web + Postgres + a bundled PanSou):

cp .env.example .env   # optional — most config can be set in the UI
docker compose up -d

🇨🇳 Can't reach Docker Hub (mainland China)? A first build failing with auth.docker.io ... i/o timeout / DeadlineExceeded means Docker Hub is blocked — configure a registry mirror first (Docker Desktop and Linux differ): see docs/deploy.md → registry mirror.

Then open the web UI and, in Settings, provide what you want to use (all bring-your-own):

  • A drive — connect 115 or Quark (QR-scan login, or paste a cookie), or 光鸭 (paste access_token + refresh_token — see setup guide).
  • TMDB — works out of the box via a proxy; add your own key for direct access.
  • LLM — any OpenAI-compatible endpoint (baseURL / apiKey / modelId). The author never sees your key.
  • Prowlarr (optional) — add your indexers for magnet/torrent sources (115 and 光鸭, which are magnet-capable; Quark has no magnet API).

Deploy

Self-host on a NAS, a router (软路由), a spare PC, or a VPS — and reach it from your phone / TV via Tailscale or a Cloudflare Tunnel (no public IP needed; never expose :3000 raw). Full walkthrough: docs/deploy.md.

Deploy with an agent

Prefer to have an AI agent (Claude Code, Codex, opencode, …) walk you through it? Paste this prompt into it — it'll ask the right questions, then deploy for you:

You are deploying Mediary Scout, a self-hosted media-acquisition agent. Follow the repo's docs/deploy.md. Ask the user the questions below IN ORDER, then execute.

## MUST ask (don't start without answers)
1. **Where are you deploying?** Which machine (NAS / router / spare PC / VPS), and how do I operate it — SSH in, or run commands on its local terminal?
2. **Single-user or multi-user?** Default single-user (just you). Multi-user lets family/friends each register, bind their own drives, and keep separate libraries.

## SHOULD ask (have defaults, but confirm preference)
3. **Local-only, or reach it from outside?**
   - Local network only (default — open `http://<host>:3000` from devices on the same LAN)
   - Tailscale (private mesh — recommended for home; no public IP, auto-encrypted)
   - Cloudflare Tunnel (public HTTPS like `https://media.yourdomain.com` — needs a domain on Cloudflare + Access in front)
4. **Configure real acquisition now, or just get it running first?** Real acquisition needs a 115/Quark/光鸭 drive + an LLM endpoint (OpenAI-compatible) + (if using 115) 115 directory CIDs. Skipping means it boots and you can look around, configure later in Settings.

## OPTIONAL — one question, skip all if the user doesn't care
5. Any of these you want to set up now? Reply "none" to skip and use defaults:
   - Push notifications (Bark / Server酱 / WeChat Work / webhook)
   - Your own TMDB key (default: works out of the box via the author's proxy)
   - Prowlarr magnet aggregation (115 only)
   - Build acceleration (registry mirror + npm mirror — needed in mainland China)

## Then execute
- `git clone https://github.com/fancydirty/mediary-scout && cd mediary-scout`
- If build acceleration (mainland China): `docker compose build --build-arg NPM_REGISTRY=https://registry.npmmirror.com` + a registry mirror in `/etc/docker/daemon.json`, **before** the first `up`
- `docker compose up -d` (first build takes a few minutes)
- If multi-user: add `MEDIA_TRACK_MULTI_USER=1` to `.env`, then `docker compose up -d web`
- If Cloudflare Tunnel: follow docs/deploy.md §"方式二" — create the tunnel in the Zero Trust dashboard, put the token in `.env` as `TUNNEL_TOKEN=<your-token>`, `docker compose --profile tunnel up -d`, and **add Cloudflare Access** (never expose the instance without auth)
- Open `http://<host>:3000`, walk the user through Settings (drive / LLM / optional extras)
- Verify it's up, report the URL, and tell them how to upgrade (`git pull && docker compose up -d --build`)

Demo

🔭 Try it live: mediary.dirtyfancy.sbs

A public, read-only demo — mock drives, real TMDB search across the whole catalog, and a scripted acquisition you can watch land in the library. No drive connect, no transfers, nothing persists. Built from this repo.

Supported drives

Three Chinese cloud drives, each a first-class workspace:

  • 115 (pan115) — full support, including magnet via Prowlarr.
  • Quark (quark) — share-link transfer (no magnet web API).
  • GuangYaPan / 光鸭云盘 (guangya) — Xunlei-family drive; magnet / offline-download first (transfers magnet/ed2k/BT via its offline-task API, like 115's offline path — it does not transfer 115/Quark/光鸭 share-links in v1). Token auth (access_token + refresh_token). Pairs well with Prowlarr. Setup guide

New brands plug into a storage-brand registry; the bulk of adding one is a drive client + a storage executor for that drive's transfer API.

Status & limitations

  • Self-hosted, for advanced users; you need usable 115/Quark/光鸭 access (a membership is most practical).
  • Scheduled monitoring is most valuable on an always-on host.
  • This is not a hosted product and ships no hosted backend.

Credits & upstream

Built on top of, and grateful to:

  • PanSou — resource search backend
  • Prowlarr — indexer manager (optional)
  • p115client — 115 API reference
  • AList — GuangYaPan (光鸭云盘) API integration reference (the drivers/guangyapan driver)
  • TMDB — metadata (this product is not endorsed or certified by TMDB)

Not affiliated with 115, Quark, 光鸭云盘 (GuangYaPan), TMDB, or any indexer. Mediary Scout is an independent, disciplined workflow built around these pieces.

About

Agent-driven media library for your cloud drives (115 / Quark / 光鸭 GuangYaPan).

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors