Some checks failed
Forge CI / smoke-and-build (pull_request) Failing after 1m7s
Fixed two optional-skill scripts that still hardcoded ~/.hermes: - memento_cards.py: Changed from Path.home() / '.hermes' to proper HERMES_HOME expansion - telephony.py: Changed from '~/.hermes' string to proper expansion Both now use a _hermes_home() helper that: 1. Reads HERMES_HOME env var 2. Expands ~ if present in the path 3. Falls back to Path.home() / '.hermes' if not set The migration script (openclaw_to_hermes.py) was left as-is per issue recommendation since it intentionally references old paths. Fixes #479