Skip to content

Instantly share code, notes, and snippets.

@Yani3rt
Yani3rt / hermes-cli
Created May 2, 2026 19:52 — forked from crueber/hermes-cli
Hermes CLI utility scripts for managing Docker-based development environments
#!/usr/bin/env bash
# hermes-cli - Run the Hermes Agent in interactive CLI mode
# Starts a temporary container for chatting with the agent interactively.
set -euo pipefail
HERMES_IMAGE="nousresearch/hermes-agent:latest"
HERMES_CONTAINER="hermes"
HERMES_DATA_DIR="${HOME}/.hermes"