The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Fidelis Memory listing page.
73.0% end-to-end QA on LongMemEval-S. 83.2% R@1 retrieval. $0/query. No LLM in the default retrieval path.
Stop re-explaining context to your agent. fidelis returns your original notes verbatim, local-first, fast, about 60 seconds to install. Your agent already calls an LLM to think; it should not need another one just to remember. Designed for developers. The default zero-LLM retrieval path does not send memory content to an LLM. The documented fidelis init service configuration also disables mem0 and Chroma telemetry. That can reduce third-party data exposure, but deployments still own their security and compliance assessment.
What fidelis is:
experiments/zeroLLM-FLAGSHIP-evidence/Package-name note: install Hermes Labs' package as
fidelis-memory. The import name and CLI remainfidelis. The separate PyPI project namedfidelisbelongs to NGdust/fidelis.
Linux users swap brew install ollama for the equivalent install from ollama.com. See Requirements.
Fidelis Memory 0.0.95 is also published in the
official MCP Registry
as io.github.hermes-labs-ai/fidelis-memory. Registry-aware clients can launch
the same released server directly from PyPI:
This starts the MCP stdio process; run fidelis init first when the local
Fidelis service and store have not already been configured. Version 0.0.94
introduced supported Codex MCP installation and context-sensitive orientation;
0.0.95 added the independently discoverable registry release.
After the four commands above, the next time you open Codex or Claude Code:
Most of fidelis's value is not the benchmark; it's not having to explain the same thing twice.
Most memory systems rephrase content on the way out. The specific fact gets summarized into something general. fidelis solves this structurally - there is no LLM in the default retrieval path, so the store returns exactly what you put in.
You store:
A lossy memory layer may return:
fidelis returns:
The non-configurable qualifier survives. So does every other detail you wrote down.
Once fidelis mcp install --client codex, --client copilot, or the default Claude install is run, ask your agent:
The MCP fidelis_recall tool gives the agent the original passages before it composes an answer, not paraphrased summaries. The answer can stay grounded in what you wrote, with the qualifiers intact.
fidelis retrieves memory without an LLM. Your agent still uses its normal LLM to answer using the retrieved context. "Zero-LLM" applies to the memory hot path, not to your agent.
Copilot CLI loads MCP servers from mcp-config.json in its configuration
directory (~/.copilot by default, or $COPILOT_HOME). Fidelis writes the
documented stdio entry there atomically, backing up any existing file and
leaving other servers untouched:
Unreleased.
--client copilotis onmainand not in the pinned 0.0.95 package installed in the Quickstart; it ships in the next release. Install from source to use it today.
Use --settings /path/to/mcp-config.json to target a different file. The
copilot binary is not required at install time; if you prefer the host CLI,
the equivalent registration is
copilot mcp add fidelis -- "$(python3 -c 'import sys;print(sys.executable)')" "$(python3 -c 'import fidelis.mcp_cmd as m;print(m.MCP_SERVER_FILE)')".
Copilot does not currently expose a hook or automatic-recall mechanism to
third-party servers, so recall happens when the agent calls the
fidelis_recall, fidelis_orient, or fidelis_health tools.
Three concrete reasons teams pick fidelis over hosted memory:
The diagram is at the top. Codex and Claude Code are the fastest paths to value. The retrieval engine is agent-agnostic - pair it with any LLM client. Codex registration uses its supported codex mcp CLI, and the resulting server configuration is shared by the Codex desktop app, CLI, and IDE extension on that host.
LongMemEval-S, 470 questions, public benchmark.
| Metric | Value |
|---|---|
| Retrieval R@1 | 83.2% |
| Retrieval R@5 | 98.3% |
| End-to-end QA accuracy | 73.0%, Wilson 95% CI [68.7%, 77.0%] |
| Cost per query (retrieval) | $0 (local) |
| Mean retrieval latency | 216 ms (zero-LLM hybrid: BM25 + dense + RRF) |
For context: published Mem0 results on LongMemEval-S are in the ~66–70% end-to-end QA range; Zep is 71.2%; Supermemory is 81.6%; full GPT-4o on raw context (no memory system) is 60.2%. fidelis reaches 73.0% with no LLM in the default retrieval path.
Raw evidence: retrieval aggregate · end-to-end QA summary
The QA tier wraps your existing LLM with a 140–180-token system prompt - the Fidelis Scaffold. See docs/scaffold.md.
The default zero_llm tier never makes an outbound LLM call. Optional --tier filter and --tier flagship modes do call an LLM, but only to select integer pointers - the server dereferences those pointers to the original stored text. The LLM cannot rephrase memory content.
The bundled MCP server also exposes fidelis_orient. It recognizes when a
turn invokes prior work—even when it is a statement such as “I need to
remember our Fidelis work”—and selects a bounded evidence lane for identity,
maintenance, conceptual reuse, comparison, decisions, historical state, or
current state. The returned orientation is a derived index; retrieved records
remain verbatim evidence with their existing IDs and metadata. Unrelated turns
explicitly abstain without calling the memory server.
macOS or Linux (Windows not yet supported)
Python 3.10+
Ollama running locally with nomic-embed-text pulled (~280 MB):
The full init-to-first-recall cycle is under 60 seconds once Ollama is up. No memory API keys required.
fidelis add normally stores facts produced by the configured extraction
model. If extraction returns no facts, Fidelis preserves the original input
verbatim instead of silently losing it. The command still exits 0 because the
write succeeded, but stdout reports a stable degraded status:
Automation that requires successful extraction must inspect degraded; exit 0
means the memory was stored, not necessarily that extraction succeeded. Because
mem0 does not distinguish a swallowed extractor failure from a legitimate
zero-fact result, the fallback intentionally favors durability.
Python helper for direct integration:
After fidelis init:
fidelis-server runs at http://127.0.0.1:19420 under your OS service manager (launchd on macOS, systemd on Linux). Auto-starts on boot. Logs at ~/.fidelis/server.log.~/.cogito/ (the directory name is preserved from the project's pre-rename codename for v0.0.x compatibility - it will move to ~/.fidelis/ in a later major bump). No data leaves your machine in the default zero-LLM path.fidelis_recall, fidelis_query, fidelis_health, and fidelis_orient.To stop: fidelis init --uninstall. To wipe: rm -rf ~/.cogito ~/.fidelis.
fidelis init and avoids telemetry exit handlers
delaying graceful shutdown. An explicit MEM0_TELEMETRY=True still opts in.
For the same boundary across Chroma, set ANONYMIZED_TELEMETRY=False and
CHROMA_TELEMETRY_DISABLED=True before a direct launch; fidelis init
includes all three settings automatically.Day 1: drop notes into ~/notes, run the four commands.
Day 2: ask your agent about yesterday's decision - the answer cites your original passage.
Day 7: your agent starts carrying project context across sessions; you stop re-explaining.
Useful for solo builders today; relevant for teams that need memory to stay local tomorrow.
fidelis is open-source under MIT and free for any use, including commercial. If your team has deployment requirements that the OSS path does not yet cover (centralized memory, multi-namespace isolation, custom authentication), write to founders@hermes-labs.ai.
docs/full-reference.md - full architecture, hybrid recall tiers, local server endpoints, troubleshootingdocs/scaffold.md - Fidelis Scaffold contract + drift-detection markersexperiments/zeroLLM-FLAGSHIP-evidence/ - raw eval JSONs + machine-readable SUMMARY (per-qtype breakdowns, Wilson CI, F1/F1B baselines)MIT. Built by Hermes Labs (Roli Bosch). Issues + PRs welcome.
Hermes Labs develops open-source reliability, evaluation, memory, and containment tools for AI agents. Fidelis is its local-first memory project. Other public software is listed at github.com/hermes-labs-ai, with research artifacts published separately on Zenodo.
For enterprise deployments and AI-reliability engagements: roli@hermes-labs.ai · hermes-labs.ai
On naming. Hermes Labs is named for Hermes, the Greek messenger god - patron of communication and interpretation, the herald who carries meaning between worlds. The thread to the work: hermeneutics, the theory of interpretation that takes its name from Hermes, is the philosophical anchor for an AI reliability engineering studio whose substrate is linguistic. Not affiliated with NousResearch's Hermes LLM line or their hermes-agent framework - different companies, different work.
Founder: Rolando (Roli) Bosch. Site: hermes-labs.ai Citation: Bosch, R. (2026). Hermes Labs: AI reliability infrastructure for autonomous agents. https://hermes-labs.ai
Quantitative source for the Fidelis claims above: the 470-question
LongMemEval-S aggregate and Wilson interval in
experiments/zeroLLM-FLAGSHIP-evidence/,
evaluated 2026-04-24.