feat: add __init__.py for Hermes plugin registration

This commit is contained in:
2026-06-13 01:16:02 +03:00
parent c1ad15bd86
commit 6afcb66f5c

13
__init__.py Normal file
View File

@@ -0,0 +1,13 @@
"""
Hermes Session Cleaner plugin.
CLI tool for cleaning up Hermes session DB — deletes short conversations,
generates missing titles.
Usage (from terminal, not as slash command):
python hermes_cleaner.py [--dry-run] [--min-messages N] [--no-delete] [--no-title]
"""
def register(ctx) -> None:
"""Session-cleaner is a CLI tool, no slash commands registered."""
pass