---
title: "Hermes on HELM"
canonical: "https://helm.docs.mindburn.org/helm-ai-kernel/launchpad/apps/hermes"
source: "helm-ai-kernel/docs/launchpad/apps/HERMES.md"
edit: "https://github.com/Mindburn-Labs/helm-ai-kernel/edit/main/docs/launchpad/apps/HERMES.md"
section: "start-here"
access: "public"
sensitivity: "public"
last_reviewed: "2026-06-11"
checksum_sha256: "sha256:5b4da21aae5140fed9e9c0a47d23e9b4e80d038879a73d316bbbda438f38a740"
build_timestamp: "2026-06-10T22:15:26.620Z"
---
# Hermes on HELM

## What this proves
Hermes runs through HELM’s fail-closed execution boundary. The launch is driven by a registry-pinned app definition and a safe default-deny policy: HELM installs Hermes into a sandboxed local container, gates every tool call through the kernel verdict path, and emits a signed receipt for each lifecycle step, from install and healthcheck to teardown. The run ends with an exported EvidencePack that anyone can verify offline, so "it ran safely" is a checkable claim rather than an assertion.

```mermaid
flowchart TD
    A[Hermes Agent] -->|Request Tool Call| B(HELM AI Kernel)
    B -->|Check Policy| C{Verdict}
    C -->|ALLOW| D[Execute Action]
    C -->|DENY| E[Block & Return Error]
    C -->|ESCALATE| F[Step-Up / Operator Approval]
    D -->|Teardown / Receipt| G[EvidencePack Export]
```

## One-command path
```bash
helm-ai-kernel up hermes --target local --live --json --no-open
```

## Headless path
```bash
helm-ai-kernel launch hermes local-container --headless --output json
```

## Source Truth
- Registry source: `registry/launchpad/apps/hermes.yaml`
- Policy source: `policies/launchpad/apps/hermes.safe.toml`
- Production runbook: `docs/launchpad/HERMES_PRODUCTION_RUNBOOK.md`

## Production claim boundary
Hermes production proof uses explicit `--live` mode with OpenRouter-only model
gateway scope and team-grade EvidencePack trust. It is a Mindburn-owned
production proof, not a customer/high-assurance claim.

## Evidence requirements
- cpi_output
- kernel_verdict
- sandbox_grant
- launch_receipt
- install_receipt
- healthcheck_receipt
- teardown_receipt
- evidence_pack
- evidence_graph
- mcp_quarantine
- mcp_manifest
- model_gateway_broker
- artifact_digest
- cosign_signature
- syft_sbom
- grype_vulnerability_scan

## Verify
```bash
helm-ai-kernel verify --bundle <pack>
```
