Guides
RSS Feeds
Automatically download new content from RSS feeds.
Risuko can subscribe to RSS/Atom feeds and automatically download new items as they appear.
[!WARNING] RSS feed management via CLI requires the standalone
risuko-clibinary. The RSS RPC methods are not yet implemented in the engine's RPC server. RSS is not available through the Node.js API at this time.
Adding a Feed
CLI
risuko rss add "https://example.com/feed.xml"Node.js
RSS management via the Node.js API is done through the RPC interface when the engine is running with RPC enabled.
Managing Feeds
List All Feeds
risuko rss listJSON output for scripting:
risuko rss list --jsonRefresh Feeds
Force an immediate refresh of all feeds:
risuko rss refreshThe engine also polls feeds periodically on a configurable interval.
Remove a Feed
# Get the feed ID from `rss list`
risuko rss remove feed_abc123How It Works
- When a feed is added, the engine fetches it immediately
- New items are detected by comparing with previously seen entries
- Downloadable items (direct links, magnet links, torrent URLs) are queued automatically
- Feed state is persisted via the
StorageBackendtrait - Periodic polling checks for new items at configurable intervals
Storage
RSS feed data is stored using the StorageBackend trait:
- Desktop app: Uses
tauri_plugin_store - CLI/Node.js: Uses
FileStorage(JSON files in the config directory)
Feed state survives engine restarts. Previously downloaded items are not re-downloaded.