Problem statement
When you need to update the hermes install in the pre-built hermes container, you cannot use hermes update as the hermes source wasn't cloned from the repo. The only option is to reinstall from scratch via curl:
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
This is a major pain as it will update/install all of the OS packages and make the image huge.
Proposed solution
If the image was built around a clone of the repo, (or if I knew where the root of the repo was) then I could use hermes update and only pull the latest code changes.
Alternatives considered
Pulling the latest image, but unclear which hermes version that includes.
Additional context
No response
Problem statement
When you need to update the hermes install in the pre-built hermes container, you cannot use
hermes updateas the hermes source wasn't cloned from the repo. The only option is to reinstall from scratch via curl:curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bashThis is a major pain as it will update/install all of the OS packages and make the image huge.
Proposed solution
If the image was built around a clone of the repo, (or if I knew where the root of the repo was) then I could use
hermes updateand only pull the latest code changes.Alternatives considered
Pulling the latest image, but unclear which hermes version that includes.
Additional context
No response