hermes-memory-providers

hermes-memory-providers is a skill for Claude Code, Codex from mnemosyne-oss/mnemosyne. It costs 34 tokens per session (1,807 once invoked), scanned A, original, MIT.

A setup guide for giving the Hermes coding agent a local memory system called Mnemosyne. It stores memories in a local SQLite database and can search past information by meaning and text.

In plain words
What is it for?
Use it to install and configure agent memory, automatically save conversation history, recall related memories, inspect or export stored data, and manage the memory database.
Why use it?
It helps the agent retain and recall relevant information across conversations without relying on cloud storage or Hermes’s built-in memory files.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for hermes-agent. Also seen: mentions Codex; built for hermes-agent.

Good fit Use it to install and configure agent memory, automatically save conversation history, recall related memories, inspect or export stored data, and manage the memory database.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mnemosyne-oss/mnemosyne/hermes-memory-providers
About the project

mnemosyne-oss/mnemosyne is a local AI memory layer that stores agent memories in SQLite instead of relying on cloud services. It is intended for coding agents and other agent frameworks, and can be used through MCP or a Python SDK. The catalogue skills connect agents to Mnemosyne’s memory features and related workflows.

mnemosyne-oss/mnemosyne · 3,093 stars · on GitHub · mnemosyne.site

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mnemosyne-oss/mnemosyne --skill hermes-memory-providers
Clone the repo
git clone --depth 1 https://github.com/mnemosyne-oss/mnemosyne

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hermes-memory-providers

README.md
[![agentmods](https://agentmods.dev/badge/skills/mnemosyne-oss/mnemosyne/hermes-memory-providers/github.svg)](https://agentmods.dev/skills/mnemosyne-oss/mnemosyne/hermes-memory-providers)
Your own site
<a href="https://agentmods.dev/skills/mnemosyne-oss/mnemosyne/hermes-memory-providers"><img src="https://agentmods.dev/badge/skills/mnemosyne-oss/mnemosyne/hermes-memory-providers/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hermes-memory-providers

Your own site · 80×15
<a href="https://agentmods.dev/skills/mnemosyne-oss/mnemosyne/hermes-memory-providers"><img src="https://agentmods.dev/badge/skills/mnemosyne-oss/mnemosyne/hermes-memory-providers.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,807 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00034 $0.01807
Opus 5 $0.00017 $0.00903
Sonnet 5 $0.00007 $0.00361
Haiku 4.5 $0.00003 $0.00181

Measured 12d ago against content hash c8f631d4c543, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

hermes-memory-providers scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/hermes-memory-providers/SKILL.md · 213 lines

How it starts

The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Mnemosyne — Hermes Memory Provider

Mnemosyne is a local-first memory layer for AI agents. When deployed as a Hermes memory provider, it replaces the built-in MEMORY.md/USER.md system with SQLite-backed vector + FTS5 hybrid search, episodic consolidation, temporal knowledge graphs, and optional bidirectional sync.

100% local. Zero cloud. Sub-millisecond recall.

What It Gives You

  • System prompt injection# Mnemosyne Memory context block in every prompt
  • Pre-turn prefetch — relevant memories injected before each LLM call
  • Post-turn sync — conversation turns auto-stored to episodic memory
  • 20 tools auto-injected into the model's tool surface (remember, recall, sleep, triples, scratchpad, graph, sync, diagnostics, etc.)
  • 3 lifecycle hookspre_llm_call, on_session_start, post_tool_call
  • CLI commandshermes mnemosyne {stats|sleep|inspect|export|import|clear|version}

All without touching Hermes core — deployed purely through the plugin directory.

Quick Check

hermes memory status     # See active provider and installed plugins

Install

Step 1 — Install the package

pip install mnemosyne-hermes

Debian/Trixie users (bare pip blocked): use a venv first:

python3 -m venv ~/.hermes/hermes-agent/venv
source ~/.hermes/hermes-agent/venv/bin/activate
pip install mnemosyne-hermes

mnemosyne-hermes wraps the core mnemosyne-memory library with the plugin manifest and entry points Hermes needs. It does not pull embeddings or LLM deps — pair it with one of:

Extra When RAM
(core only) Raspberry Pi, remote embedding API ~50 MB
mnemosyne-memory[embeddings] Local vector search (fastembed ONNX) ~800 MB
mnemosyne-memory[all] Local embeddings + local LLM consolidation ~1.5 GB

Step 2 — Link the plugin

mnemosyne-hermes install

This creates the symlink ~/.hermes/plugins/mnemosyne/ → <installed package> so Hermes discovers it on startup.

Read the full file on GitHub · 213 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 213 lines · 34 tokens per session scan A c8f631d4c543

Subscribe to this mod's changes

hermes-memory-providers is a skill published in the GitHub repository mnemosyne-oss/mnemosyne (3,093 stars, last pushed today), licensed MIT. It adds 34 tokens to every session and 1,807 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.