Native AgentVault plugin for the Hermes agent runtime — E2E encrypted owner-↔-agent and A2A messaging via MLS
Project description
agentvault-hermes
Native AgentVault plugin for the Hermes agent runtime by Nous Research.
End-to-end encrypted, zero-knowledge messaging between AI agent owners and their Hermes agents, plus A2A discovery + messaging across other AgentVault-enabled frameworks.
Quickstart
The setup flow mirrors the OpenClaw plugin's: create an invite via the AgentVault web app, enroll the device from the CLI, approve in the web UI, and the plugin auto-activates.
1. Install the package
uv tool install agentvault-hermes
(Or pip install agentvault-hermes directly into the Hermes gateway venv.)
uv tool install puts the agentvault-hermes CLI on your PATH in its own
venv. The first agentvault-hermes setup call below also auto-installs the
plugin into the Hermes gateway venv — the venv Hermes actually loads
plugins from — so you don't have to think about the two-venv layout.
2. Create an invite at agentvault.chat
- Log in to https://agentvault.chat.
- Open My Agents → Quick Add (or
/agents/quick-add). - Enter an agent name and click Create.
- The web UI displays a CLI command containing your invite token.
The token is the part after
--token=. Copy that.
3. Run the Hermes setup command on your machine
agentvault-hermes setup --token=<paste-the-token>
The plugin will:
- check your environment (
hermesbinary,~/.hermes/config.yaml) - detect any OpenClaw coexistence and pick a non-colliding port
- generate Ed25519 + X25519 + MLS init keys
- POST
/api/v1/enrollto the AV backend (your device is now PENDING) - wait for you to approve in the web UI
4. Approve the device in agentvault.chat
The web UI's pending-device card auto-detects your enrollment. Click
Approve and Chat. The CLI is polling /api/v1/devices/{id}/status
and will see the change within ~3 seconds.
5. Plugin finishes automatically
After approval, the plugin:
- POSTs
/api/v1/devices/{id}/activateto receive the device JWT - writes
~/.hermes/agentvault/<account>/state.json(mode 0o600) - adds an
agentvaultMCP server entry to~/.hermes/config.yaml(a timestamped backup of the original is written next to it)
6. Start the Hermes gateway
[!IMPORTANT] This step is required. Running the
hermesTUI alone only registers plugins — it does NOT activate the AgentVault gateway platform that opens the WebSocket to AgentVault. Without a running gateway, your agent appears Offline inagentvault.chatindefinitely even though enrollment succeeded.
Pick one:
Foreground (recommended for first run / debugging):
hermes gateway run
You'll see ✓ agentvault connected once the WS handshake completes.
Ctrl-C to stop. Logs land in ~/.hermes/logs/agent.log and
~/.hermes/logs/errors.log.
Background (launchd / systemd service):
hermes gateway install
hermes gateway start
This installs a persistent service that auto-starts on login. Check
status with hermes gateway status; stop/restart with
hermes gateway stop / hermes gateway restart.
7. Verify
agentvault-hermes doctor
Reports green on three checks:
- Configuration — state.json exists with a valid JWT
- Connectivity — AV backend reachable
- OpenClaw coexistence — neighbor framework detected (or not)
The doctor command does NOT yet verify the gateway is running —
tracked as a follow-up.
For now confirm via hermes gateway status (or by sending a message
from agentvault.chat and seeing the reply land).
Troubleshooting
Upgrading agentvault-hermes
uv tool install --upgrade agentvault-hermes
agentvault-hermes doctor # (or any agentvault-hermes command — auto-syncs the gateway venv)
hermes gateway restart # picks up the new code
Any agentvault-hermes command runs a pre-flight that keeps the Hermes
gateway venv in sync with the version on your PATH. If the pre-flight ever
fails (e.g., offline), agentvault-hermes doctor reports the drift
explicitly with the exact pip command to heal manually.
"I sent a message in agentvault.chat but the agent never replies"
99% of first-run reports are a missing Step 6. Run
hermes gateway status — if it says not running, start it with
hermes gateway run (foreground) or hermes gateway start (background
service).
The TUI's hermes and hermes chat commands intentionally do NOT
start the gateway — they're chat surfaces, not daemon launchers. The
WebSocket that delivers your inbound messages to the agent runtime
lives in the gateway daemon process, not the TUI.
"Agent shows Offline in agentvault.chat even with the gateway running"
Check ~/.hermes/logs/agent.log for the
AV adapter connected: account=... line. If absent, the gateway
either crashed at startup or never tried to activate the platform.
Common causes: stale state.json (re-enroll), wrong API base URL in
~/.hermes/agentvault/<account>/state.json, or a backend pairing
already mapped to a different device (delete the agent in AV-web and
re-enroll a fresh device).
Re-enrolling
state.json makes setup idempotent — re-running agentvault-hermes setup
with state.json present is a no-op. To re-enroll (new invite, new
device record):
rm ~/.hermes/agentvault/default/state.json
agentvault-hermes setup --token=<new-token>
Invite tokens are single-use, so each re-enrollment requires a fresh invite from the web UI.
Multi-account
agentvault-hermes setup --account=alice --token=<token-1>
agentvault-hermes setup --account=bob --token=<token-2>
Each account gets its own ~/.hermes/agentvault/<account-id>/
subdirectory with separate keys and JWT.
Status
This package is in active development. Phase 0 (mls-rs interop spike),
Phase 1 (foundation: identity, transport, CLI, integration tests, CI),
and Phase 2 (MLS crypto core) have shipped on main. Phase 3 (full
encrypted send/receive over the live transport) is next.
Phase 2 capabilities (shipped)
The crypto module under src/agentvault_hermes/crypto/ is feature-complete
for the four primitives Hermes needs and is byte-compatible with the
OpenClaw plugin's TypeScript implementation where mathematically possible.
| Capability | Module | Tests |
|---|---|---|
| X3DH key agreement (Ed25519↔X25519, BLAKE2b-256) | crypto/x3dh.py |
tests/unit/crypto/test_x3dh.py + tests/unit/crypto/vectors/test_x3dh_vectors.py (byte-equal vs OC) |
| Double Ratchet 1:1 messaging (XChaCha20-Poly1305 + Ed25519 header sigs + V2 header encryption) | crypto/ratchet.py |
tests/unit/crypto/test_ratchet.py + tests/unit/crypto/vectors/test_ratchet_vectors.py (5 byte-equal scenarios) |
| MLS group state (mls-rs-uniffi 0.1.x wrapper, RFC 9420) | crypto/mls_group.py |
tests/unit/crypto/test_mls_group.py + tests/unit/crypto/vectors/test_mls_group_vectors.py (parse-only structural) |
| Persistence (per-conversation directory layout, atomic meta writes) | crypto/persistence.py |
tests/unit/crypto/test_persistence.py |
Cross-module flows (X3DH → DR bootstrap, MLS multi-member lifecycle,
state save/reload, telemetry hooks) are exercised in
tests/integration/test_crypto_*.py.
The Phase 2 acceptance smoke at
tests/integration/test_phase2_demo.py is the runnable summary — it
imports every public crypto surface and walks through the four primitives
in one test. When that file fails, expect a packaging-level break;
localized regressions surface in the deeper test suites listed above.
To run only the Phase 2 acceptance demo:
cd packages/plugin-hermes
uv run pytest tests/integration/test_phase2_demo.py -v
To run the full Phase 2 suite (~210 tests, runtime ~2s, includes 9
documented xfails for cross-impl bridges that land in WS-25 follow-up
and Phase 6 telemetry):
uv run pytest tests/ -v
Plans + design docs
See in the AgentVault repo:
docs/plans/2026-05-05-hermes-native-integration-design.md— original design.docs/plans/2026-05-05-hermes-native-integration-phase0-1-implementation.md— Phase 0/1 implementation plan.docs/plans/2026-05-07-hermes-phase2-implementation.md— Phase 2 work-stream breakdown (WS-22 through WS-27).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentvault_hermes-0.7.0.tar.gz.
File metadata
- Download URL: agentvault_hermes-0.7.0.tar.gz
- Upload date:
- Size: 515.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd1f1905ddbd0a48ba1053f77d86005fd5b219d7e9e4cc548c5f214722531168
|
|
| MD5 |
1387e4fe97ef76c6578101e95eb39b11
|
|
| BLAKE2b-256 |
dd0591e3dd9fd10c9a90ba1aa7e94a58daf0234a7b0bfa81cff3bdad3b4afcc0
|
Provenance
The following attestation bundles were made for agentvault_hermes-0.7.0.tar.gz:
Publisher:
publish-hermes.yml on motiveflowllc/agentvault-gen2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentvault_hermes-0.7.0.tar.gz -
Subject digest:
cd1f1905ddbd0a48ba1053f77d86005fd5b219d7e9e4cc548c5f214722531168 - Sigstore transparency entry: 1647877163
- Sigstore integration time:
-
Permalink:
motiveflowllc/agentvault-gen2@531054a58ff9c4fa2877c3f755037b217fd6c1a9 -
Branch / Tag:
refs/tags/hermes/v0.7.0 - Owner: https://github.com/motiveflowllc
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-hermes.yml@531054a58ff9c4fa2877c3f755037b217fd6c1a9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file agentvault_hermes-0.7.0-py3-none-any.whl.
File metadata
- Download URL: agentvault_hermes-0.7.0-py3-none-any.whl
- Upload date:
- Size: 182.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0247a60653650c6b258f521afd49f4efcbc3d1cb241a12bebd2a2ed1c2faae23
|
|
| MD5 |
0bd56b47b98c7c455b3e2ef22a472e8a
|
|
| BLAKE2b-256 |
b5b584d3fb03487b010f3c0227b2650ae64d5a07427cf1b3878984fac3c7fcf8
|
Provenance
The following attestation bundles were made for agentvault_hermes-0.7.0-py3-none-any.whl:
Publisher:
publish-hermes.yml on motiveflowllc/agentvault-gen2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentvault_hermes-0.7.0-py3-none-any.whl -
Subject digest:
0247a60653650c6b258f521afd49f4efcbc3d1cb241a12bebd2a2ed1c2faae23 - Sigstore transparency entry: 1647877293
- Sigstore integration time:
-
Permalink:
motiveflowllc/agentvault-gen2@531054a58ff9c4fa2877c3f755037b217fd6c1a9 -
Branch / Tag:
refs/tags/hermes/v0.7.0 - Owner: https://github.com/motiveflowllc
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-hermes.yml@531054a58ff9c4fa2877c3f755037b217fd6c1a9 -
Trigger Event:
push
-
Statement type: