diff --git a/hermes_cli/kanban_db.py b/hermes_cli/kanban_db.py index d8e2e861ba..98ee4828d3 100644 --- a/hermes_cli/kanban_db.py +++ b/hermes_cli/kanban_db.py @@ -2732,7 +2732,8 @@ def list_profiles_on_disk() -> list[str]: ``config.yaml`` — a bare dir without config isn't a real profile. """ try: - home = Path.home() / ".hermes" / "profiles" + from hermes_constants import get_default_hermes_root + home = get_default_hermes_root() / "profiles" except Exception: return [] if not home.is_dir():