From fbce1093b952ca17f6c2c698c336051f77ce9dbd Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 15 Apr 2026 23:22:20 +0000 Subject: [PATCH] fix: install hermes-agent[honcho] extra in Docker init (fixes #553) docker_init.bash was installing hermes-agent without the [honcho] optional extra, causing honcho-ai to be missing from /app/venv. All Honcho memory tools would fail with 'Honcho session could not be initialized' on every fresh Docker build. Adds [honcho] to the uv pip install invocation on line 238. --- docker_init.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_init.bash b/docker_init.bash index 0141274..84aeb9a 100644 --- a/docker_init.bash +++ b/docker_init.bash @@ -235,7 +235,7 @@ else test -x /app/venv/bin/pip echo ""; echo "== Adding hermes-agent's pyproject.toml base dependencies to the virtual environment" - uv pip install /home/hermeswebui/.hermes/hermes-agent --trusted-host pypi.org --trusted-host files.pythonhosted.org || error_exit "Failed to install hermes-agent's requirements" + uv pip install "/home/hermeswebui/.hermes/hermes-agent[honcho]" --trusted-host pypi.org --trusted-host files.pythonhosted.org || error_exit "Failed to install hermes-agent's requirements" touch /app/venv/.deps_installed fi