Skip to main content

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

pip install -e ".[dev]"

(Once published to PyPI, this becomes pip install agentvault-hermes.)

2. Create an invite at agentvault.chat

  1. Log in to https://agentvault.chat.
  2. Open My Agents → Quick Add (or /agents/quick-add).
  3. Enter an agent name and click Create.
  4. 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 (hermes binary, ~/.hermes/config.yaml)
  • detect any OpenClaw coexistence and pick a non-colliding port
  • generate Ed25519 + X25519 + MLS init keys
  • POST /api/v1/enroll to 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}/activate to receive the device JWT
  • writes ~/.hermes/agentvault/<account>/state.json (mode 0o600)
  • adds an agentvault MCP 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 hermes TUI 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 in agentvault.chat indefinitely 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

"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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentvault_hermes-0.4.0.tar.gz (355.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentvault_hermes-0.4.0-py3-none-any.whl (155.5 kB view details)

Uploaded Python 3

File details

Details for the file agentvault_hermes-0.4.0.tar.gz.

File metadata

  • Download URL: agentvault_hermes-0.4.0.tar.gz
  • Upload date:
  • Size: 355.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentvault_hermes-0.4.0.tar.gz
Algorithm Hash digest
SHA256 4f112af0cda5c94a6042e2276f24e971a5bdc184be9068b64867d3984587832f
MD5 81612b1931e5edb7cdf959afcf4eb367
BLAKE2b-256 9bfc370a884f27e875f08396f3d56ca55273266547c1a7967d850a50d960e498

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvault_hermes-0.4.0.tar.gz:

Publisher: publish-hermes.yml on motiveflowllc/agentvault-gen2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agentvault_hermes-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for agentvault_hermes-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7af772e1ab5d2c494ff0a93f3d61dd0331c59e5476e10a6049ac4f6079dcc312
MD5 15916afabc04ec55b1266efb8c60b7c6
BLAKE2b-256 83ee5e29f0303c8a969e044fe716e5271c396281862c8dba219893a26fad7038

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentvault_hermes-0.4.0-py3-none-any.whl:

Publisher: publish-hermes.yml on motiveflowllc/agentvault-gen2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page