yarr (v0.4.2 as of latest stable) is an open-source RSS/Atom feed reader written in Go. It’s designed to be:
GitHub repo: github.com/nkanaev/yarr
From releases:
# Linux x86_64
wget https://github.com/nkanaev/yarr/releases/latest/download/yarr_linux_x86_64
chmod +x yarr_linux_x86_64
Yarrlist prioritizes speed and readability. The UI is designed to be responsive, working flawlessly on both desktop and mobile browsers. It avoids the clutter of metadata, ratings, and actor biographies found on sites like IMDb, giving you just the information you need: the title and your status. yarrlist github full
yarrlist/
├── main.go # CLI entry point
├── internal/
│ ├── parser/ # List file parser
│ ├── validator/ # Remote path existence checker
│ ├── executor/ # Rclone command runner
│ └── logger/ # Logging utilities
├── examples/ # Sample list files
├── test/ # Integration tests
├── go.mod, go.sum
└── README.md
| Use Case | How YARRLIST Helps |
|----------|---------------------|
| Cloud-to-cloud migration | Move 500 user folders from GDrive to OneDrive using a CSV → list file. |
| Automated backup rotation | Sync daily backup folders from local disk to B2 and Wasabi. |
| Bulk metadata fix | Run rclone touch on thousands of files in different remotes. |
| Multi-tenant data sync | Each tenant = one line in the list; YARRLIST processes all. | yarr (v0