The web UI has watchlists (scheduled re-scans with change alerts), but the CLI can't manage them. Add a watchlist subcommand to cli.py for parity:
prism watchlist add <target> --interval 24 — create
prism watchlist list — list existing
prism watchlist rm <id> — delete
It can talk to the running backend via the same /api/watchlist endpoints, or read/write the watchlist_data/ store directly. Keep the output plain so it pipes cleanly.
The web UI has watchlists (scheduled re-scans with change alerts), but the CLI can't manage them. Add a
watchlistsubcommand tocli.pyfor parity:prism watchlist add <target> --interval 24— createprism watchlist list— list existingprism watchlist rm <id>— deleteIt can talk to the running backend via the same
/api/watchlistendpoints, or read/write thewatchlist_data/store directly. Keep the output plain so it pipes cleanly.