From 6afcb66f5c7110ac0a6f18150562f44dcd792fde Mon Sep 17 00:00:00 2001 From: git_alhan Date: Sat, 13 Jun 2026 01:16:02 +0300 Subject: [PATCH] feat: add __init__.py for Hermes plugin registration --- __init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..6693d62 --- /dev/null +++ b/__init__.py @@ -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