Install
openclaw skills install @sunme1977/hermes-skillAuto-capture chat to Hermes DB, load context on fresh chats, scheduled DB maintenance.
openclaw skills install @sunme1977/hermes-skillAutomatically saves meaningful chat input to HermesClawZero DB, loads user context on fresh sessions, and manages automated DB maintenance.
This skill captures and persistently stores conversation content in a local PostgreSQL+pgvector database. By activating this skill you consent to automatic memory capture.
The memory.py CLI lives alongside the sidecar at:
C:\dev\HermesClawZero-ConfigSidecar\memory.py
It reads API config from .env or env vars (MEM_PUBLIC_URL, API_KEY) automatically.
When a new session starts, load the user's profile and recent context:
python C:\dev\HermesClawZero-ConfigSidecar\memory.py search "user profile preferences current project state" 5During conversation, if the user shares a new fact, instruction, preference, project detail, or anything worth remembering, immediately capture it:
python C:\dev\HermesClawZero-ConfigSidecar\memory.py capture "<Concise summary of the user's input or new fact>"scope_id (e.g. project name) for logical grouping.chat_id — that makes memories unfindable via default search. Omitting it stores in chat_id=global.If the user asks to back up the current session:
sessions_history to get the current visible session.python C:\dev\HermesClawZero-ConfigSidecar\memory.py autosave "<formatted_chat_history>" "chat_backup.md"HermesClawZero requires periodic background jobs for tagging memories and push reminders.
When the user asks to "setup memory background jobs", create these cron jobs:
A. Nightly Memory Gardener (Auto-tagging):
hermes-memory-gardener0 3 * * * (3:00 AM daily)exec python C:\dev\HermesClawZero-ConfigSidecar\gardener.pyB. Daily Memory Highlight (Telegram Push):
hermes-daily-reminder0 9 * * * (9:00 AM daily)exec python C:\dev\HermesClawZero-ConfigSidecar\daily_reminder.pyCurrent cron jobs already exist for both (checked during setup).