Skip to content

Manga Acquisition Pipeline

This documents the two-track system for acquiring manga content, balancing archival quality with staying current on ongoing series.

Two-Track Manga Acquisition System

Track 1: Tankobon Volumes (Mylar)

AttributeValue
ToolMylar (port 8090)
SourceComicVine metadata + Usenet/Prowlarr indexers
What it tracksPublished tankobon (collected volumes)
FormatCBZ files, official English releases (Viz, Kodansha, etc.)
Typical delay3-6 months after Japanese release
Best forCompleted series, official translations, archival quality

Track 2: Weekly Chapters (manga-torrent-searcher agent)

AttributeValue
Toolmanga-torrent-searcher agent + Transmission/Nyaa
SourceNyaa.si, AniDex, fan translations
What it tracksWeekly/monthly chapter releases as they drop
FormatIndividual chapters, scanlations
DelaySame-day to 1 week after Japanese release
Best forOngoing series, staying current, series without official English

When to Use Which Track

Use CaseTrack
Series you want to READ NOWTrack 2 (Weekly chapters)
Series you want to ARCHIVE in best qualityTrack 1 (Tankobon)
Ongoing active readsBoth tracks

Configured Series

Track 1: Mylar Tankobon Monitoring

All 82 series in /var/mnt/fast8tb/Cloud/OneDrive/Books/Comics/ are monitored for tankobon releases via Mylar.

Track 2: Weekly Chapter Monitoring

Currently tracked via manga-torrent-searcher agent:

  • Chainsaw Man
  • Kagurabachi
  • Dandadan
  • Bug Ego

API Reference

Mylar API

Base URL: http://localhost:8090/api

API Key: Read from config file at runtime:

bash
MYLAR_API_KEY=$(grep -oP '(?<=api_key = ).+' /var/mnt/fast8tb/config/mylar/config.ini)
EndpointDescription
findComic&name=XSearch ComicVine for series
addComic&id=XAdd series by ComicVine ID
getIndexList all tracked series
forceSearch&id=XTrigger download search for series

Example API Calls

bash
# Get API key from config (never hardcode!)
MYLAR_API_KEY=$(grep -oP '(?<=api_key = ).+' /var/mnt/fast8tb/config/mylar/config.ini)

# Search for a series
curl "http://localhost:8090/api?apikey=${MYLAR_API_KEY}&cmd=findComic&name=Chainsaw%20Man"

# List all monitored series
curl "http://localhost:8090/api?apikey=${MYLAR_API_KEY}&cmd=getIndex"

# Force search for new releases
curl "http://localhost:8090/api?apikey=${MYLAR_API_KEY}&cmd=forceSearch&id=COMICVINE_ID"

SECURITY NOTE: Never commit API keys to documentation or version control. Always read from config files at runtime.

Built with ❤️ following Bell Labs standards. Dedicated to Stan Eisenstat.