Skip to content

Repository files navigation

Hermes Config

Python 3.13+ License Build Stars PRs Welcome

A starter kit and reference architecture for the Hermes Agent.
Personality presets, a hybrid-retrieval memory plugin, a library of procedural skills, infrastructure patterns, and a researched migration path from OpenClaw.


Hermes is an open-source AI agent from NousResearch — a Python harness with a built-in TUI, messaging gateway, plugin system, MCP support, cron, and a self-improvement loop that lets the agent grow its own skills over time. This repo is a shareable config on top of Hermes, not a fork. Nothing here patches or vendors the agent.

Why this exists

Hermes gives you a great agent. It does not tell you what to put in it.

The gap between hermes setup and an agent you actually rely on is a pile of decisions: what personality, what memory backend, which skills, what to keep from your old setup. This repo is one opinionated set of answers, with the research written down so you can disagree with it on purpose instead of by accident.

Everything here is take-what-you-want. There is no install step for the repo itself, no framework to buy into, and no upstream that pushes to your machine. You copy the pieces you like into ~/.hermes/ and delete the rest.

Pick your starting point

You are... Start here
Working with a coding agent SETUP.md — a prompt to paste into Claude Code / Cursor / Codex
New to Hermes, want a good agent fast Quick start → copy a SOUL preset and a skill or two
Coming from OpenClaw knowledge/hermes-vs-openclaw.md, then docs/migration-guide.md
Here to understand how Hermes works knowledge/hermes-architecture.md
Shopping for a memory backend knowledge/memory-providers.md — Honcho vs mem0 vs supermemory
Looking to contribute Contributing and CONTRIBUTING.md

Quick start

Install Hermes (this repo assumes you already have it):

# Linux / macOS / WSL2 / Termux
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
hermes setup

Then take what you want from here:

git clone https://github.com/TechNickAI/hermes-config.git
cd hermes-config

# 1. Give your agent a personality (four presets — see templates/soul/README.md)
cp templates/soul/engineer.md ~/.hermes/SOUL.md

# 2. Add a skill or three (each is a self-contained directory)
cp -r skills/recall ~/.hermes/skills/
cp -r skills/multi-review ~/.hermes/skills/

# 3. Optional: markdown-backed memory with hybrid retrieval
cp -r plugins/memory/cortex ~/.hermes/plugins/
# then set memory.provider: cortex in ~/.hermes/config.yaml

Start a session and the changes are live:

hermes

Verify it actually worked

Copy commands fail quietly — a missing directory, a skill copied without its dependency, a plugin copied but never selected in config. Nothing errors, and the gap only surfaces later when something silently no-ops:

./scripts/verify_setup.sh

It reads state and changes nothing. It checks that Hermes is installed, that SOUL.md loaded, that every installed skill is a complete copy, that skills needing a credential actually have one, and that a copied memory plugin is actually selected in config.yaml.

Using a coding agent?

SETUP.md has a prompt to paste into Claude Code, Cursor, or Codex. It tells your agent to read skills/MANIFEST.yaml rather than twenty-three skill files, to filter by whether you run one machine or a fleet, to install only what needs no configuration, and to ask before anything requiring a credential — rather than copying everything and reporting success.

What's in here

templates/ — personality presets

Four SOUL.md starters: personal-assistant, engineer, it-admin, family-companion. Hermes loads ~/.hermes/SOUL.md into every conversation, so this is the single highest-leverage file in your setup. Copy one, then make it yours. See templates/soul/README.md.

skills/: 25 procedural skills

Skills are markdown procedures the agent loads on demand. A skill is just a directorycp -r it into ~/.hermes/skills/ and it works.

Grouped by what you're trying to do. Anything marked needs setup requires a credential or a running service before it will do anything — check the requires field in skills/MANIFEST.yaml, the machine-readable index your agent should read instead of this table.

Start here — no setup, useful immediately

Skill What it does
recall Restore context after /new — sessions, memories, transcripts
multi-review Review any artifact through a panel of diverse lenses across models
trust-framework Govern your own autonomy: when to act, when to ask, how to earn more

Everyday agent hygiene

Skill What it does
keep-going /keep_going — restart an agent that stopped short of the goal
memory-cleanup Shrink a bloated MEMORY.md / USER.md without losing signal
moa-solve Throw multiple models at one hard problem, extract the best answer
project-steward Run a portfolio of long-running projects as a chief of staff needs setup
mob-check What real people are saying right now — Reddit, X, HN, YouTube
email-steward Triage inboxes safely with cron, header rules, and isolated reads needs setup
deep-dive "Go figure this out" — research a question across every source

Code review & GitHub

Skill What it does
address-pr-comments Triage PR bot feedback, fix what's valid, push back on what isn't needs setup
pr-review-sweep Nightly sweep of merged PRs for unhandled review comments needs setup

Google Workspace

Skill What it does
google-docs Create, format, and export Google Docs from markdown needs setup
google-sheets Build and populate Sheets from CSV, JSON, or computed tables needs setup
google-slides Markdown to a Slides deck via PPTX conversion and Drive import needs setup

Research

Skill What it does
grok-search Real-time web and X search via xAI's Grok needs setup

Messaging

Skill What it does
imessage-bluebubbles Send and read iMessage via a local BlueBubbles bridge needs setup

Voice

Skill What it does
vapi-calls Place real outbound phone calls, with consent and cost gates needs setup

Fleet / infrastructure — for multi-host setups

Skill What it does
cron-healthcheck Detect broken cron jobs; triage cheap, fix expensive needs setup
scheduled-job-runner Run every scheduled job through one adapter: silence-on-success, overlap locks, timeouts, run ledger
robustify-doctor Collect agent health facts, then read them for real incidents
mini-app Add/protect/troubleshoot an app on the mini-app router needs setup
diagram-rendering Render D2/Mermaid/Graphviz/Chart.js text to an inline PNG
report File a bug or piece of feedback from any platform session

Migration

Skill What it does
recall-from-openclaw One-time bridge to find your OpenClaw transcript mid-migration

These are seeds, not the destination. Hermes writes its own skills from successful problem-solving. Start with a few good ones and let the agent grow the rest.

plugins/memory/cortex/ — markdown knowledge base as memory

A Hermes MemoryProvider backed by a directory of markdown pages you can cd into, edit by hand, and version with git. Hybrid retrieval: FTS5/BM25 fused with semantic embeddings via Reciprocal Rank Fusion, plus an optional cross-encoder rerank tier. Relevant pages are injected before each turn.

Fails safe by design — no embedding endpoint configured means it quietly degrades to lexical search rather than breaking recall. See plugins/memory/cortex/README.md.

knowledge/ — the research behind every decision

Eleven documents, ~3,100 lines, each leading with its conclusion. This is the part worth reading even if you take no code:

devops/ — infrastructure patterns

  • app-router/ — serve named web apps at clean URLs on one Tailscale HTTPS host, with optional per-app passwords. Caddy + PM2 + a small Express auth sidecar (18 tests).
  • shared-browser/ — one login-capable Chrome that multiple agents drive in parallel, sharing a cookie jar. One Node daemon and one shell script; no MCP.
  • migration/ — audits an OpenClaw→Hermes migration for the failure classes that make a migration look complete while still depending on the old tree.

docs/ — guides

Migrating from OpenClaw

Hermes ships an importer for your SOUL, memories, skills, allowlists, messaging config, and API keys:

hermes claw migrate --dry-run            # preview
hermes claw migrate                       # do it
hermes claw migrate --preset user-data    # without secrets

The mechanical part is solved. The strategic part — which paradigms transfer cleanly, which die quietly, which need a redesign — is what docs/migration-guide.md and knowledge/paradigm-translation.md are for. Read knowledge/hermes-vs-openclaw.md first.

Design principles

  1. If Hermes does it, this repo does not. Every artifact justifies itself against a built-in.
  2. Lean over comprehensive. Three good skills beat thirty stale ones.
  3. Agent-authored skills are the destination. We seed; the agent grows.
  4. Markdown over JSON. Hermes reads markdown natively. So do humans.
  5. Public-safe by default. No PII, no fleet specifics. Anyone can clone.

Development

Everything is testable from a bare clone — no Hermes install required. The cortex plugin falls back to compatibility stubs when the agent runtime is absent, so the suite runs anywhere:

pip install pytest pyyaml
pytest -q                                  # 64 Python tests

cd devops/app-router/auth-service
npm ci && npm test                         # 18 Node tests

Linting matches CI exactly:

pip install pre-commit
pre-commit run --all-files

Both suites run on every push and pull request (build.yml), on Python 3.13.

Contributing

PRs welcome. Keep each one scoped to a single coherent concept so review stays focused. Read CONTRIBUTING.md before your first PR — especially the zero-PII rule, which is non-negotiable in a public repo.

Mention @claude in a PR or issue comment to invoke the agent for follow-up work.

License

MIT. See LICENSE.

About

Shareable config for the Hermes agent — templates, plugins, knowledge, and a guided migration from OpenClaw.

Resources

Contributing

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages