Navigate to the Plugins tab in the Hermes dashboard. Find Cronalytics in the list and click Delete. This removes the plugin code, fact database, watermark, and pending queue.
Important: If you installed the CLI via
pip, it must be uninstalled separately:pip uninstall cronalytics(Arch Linux users (btw) may need to add
--break-system-packagesdue to PEP 668. Other distros omit that flag.)
rm -rf ~/.hermes/plugins/cronalyticsThis removes the plugin code, fact database (facts.db), sync watermark (watermark.json), and pending queue (pending.jsonl).
If you added cronalytics to plugins.enabled in ~/.hermes/config.yaml, remove it:
plugins:
enabled:
- some_other_plugin
# - cronalytics <-- remove this lineIf the dashboard still shows the Cronalytics tab after manual removal, restart the dashboard server.
hermes gateway restartIf you want to keep your analytics history before uninstalling, back up the fact database:
cp ~/.hermes/plugins/cronalytics/facts.db ~/cronalytics-backup-$(date +%Y%m%d).dbTo restore later, reinstall the plugin and copy the backup back:
cp ~/cronalytics-backup-YYYYMMDD.db ~/.hermes/plugins/cronalytics/facts.dbVersion: 1.1.0
Last updated: 2026-05-26