Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/agentcrd/agent_contract_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
//
// The unit tests in agent_test.go and serviceoffercontroller/agent_render_test.go
// only prove that we *render* the `.no-bundled-skills` marker and the capped
// hermes-config keys. They do NOT prove the Hermes image
// (nousresearch/hermes-agent:v2026.6.5) actually honors them. v2026.5.28
// hermes-config keys. They do NOT prove the currently pinned Hermes image
// actually honors them. v2026.5.28
// shipped the marker check on the install/CLI path only; the per-launch
// sync_skills() call ignored it and re-seeded ~24 categories from the
// image-baked /opt/hermes/skills source on every boot, regardless of the
Expand Down
2 changes: 1 addition & 1 deletion internal/hermes/hermes.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (
rawChartVersion = "2.0.2"

// renovate: datasource=docker depName=nousresearch/hermes-agent
defaultImage = "nousresearch/hermes-agent:v2026.6.5"
defaultImage = "nousresearch/hermes-agent:main@sha256:e9f2892b626468d2a65abeae9f94ec0a71872d7d9643906b956ab29c9bf328a9"
// Use the upstream image venv instead of cloning Hermes into the PVC on
// every cold start. The init container below validates the required extras
// are present so image regressions fail before the gateway starts.
Expand Down
2 changes: 1 addition & 1 deletion internal/serviceoffercontroller/agent_render.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
hermesDataPVC = "hermes-data"
hermesAPIPath = "/health"
// renovate: datasource=docker depName=nousresearch/hermes-agent
defaultHermesImage = "nousresearch/hermes-agent:v2026.6.5"
defaultHermesImage = "nousresearch/hermes-agent:main@sha256:e9f2892b626468d2a65abeae9f94ec0a71872d7d9643906b956ab29c9bf328a9"
)

// agentLabels returns the standard label set we attach to every primitive
Expand Down