mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-18 04:41:56 +00:00
chore(config): expand ensure_hermes_home to create full directory scaffold
Match the full set of subdirs created by install.sh: pairing, hooks, image_cache, audio_cache, and skills are now pre-created alongside the existing cron, sessions, logs, logs/curator, and memories dirs. This makes hermes doctor checks cleaner without changing any runtime behaviour.
This commit is contained in:
parent
79afa50703
commit
bea96e5cac
1 changed files with 4 additions and 1 deletions
|
|
@ -432,7 +432,10 @@ def ensure_hermes_home():
|
|||
else:
|
||||
home.mkdir(parents=True, exist_ok=True)
|
||||
_secure_dir(home)
|
||||
for subdir in ("cron", "sessions", "logs", "logs/curator", "memories"):
|
||||
for subdir in (
|
||||
"cron", "sessions", "logs", "logs/curator", "memories",
|
||||
"pairing", "hooks", "image_cache", "audio_cache", "skills",
|
||||
):
|
||||
d = home / subdir
|
||||
d.mkdir(parents=True, exist_ok=True)
|
||||
_secure_dir(d)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue