mirror of
https://github.com/domfelipe/hermes-agent-custom.git
synced 2026-08-07 05:56:45 +00:00
12 lines
259 B
Bash
Executable file
12 lines
259 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# SOUL.md override via env
|
|
if [ -n "$HERMES_SOUL_OVERRIDE" ]; then
|
|
echo "$HERMES_SOUL_OVERRIDE" > /opt/data/.hermes/SOUL.md
|
|
fi
|
|
|
|
# Garante diretório de skills
|
|
mkdir -p /opt/data/.hermes/skills
|
|
|
|
exec /opt/hermes/docker/entrypoint.sh "$@"
|