Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Fidelis

ASecurity

Use when you need agent memory with a zero-LLM default retrieval path — returning stored passages verbatim via BM25 + dense-vector + reciprocal-rank-fusion — and want an HTTP server plus CLI that can also do compressed-index snapshotting and Claude Code/Codex/Copilot/Gemini/OpenClaw MCP wiring. Local-first, PyPI package `fidelis-memory`.

22 stars
0 votes
0 copies
1 views
Added 9/20/2026
ai-agentspythongobashtestinggitapi

Works with

claude codecliapimcp

Security Analysis

A92/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add hermes-labs-ai/fidelis --skill fidelis --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Fidelis?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Fidelis
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/hermes-labs-ai-fidelis/badge)](https://www.skillsdirectory.com/skills/hermes-labs-ai-fidelis)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: fidelis
description: Use when you need agent memory with a zero-LLM default retrieval path — returning stored passages verbatim via BM25 + dense-vector + reciprocal-rank-fusion — and want an HTTP server plus CLI that can also do compressed-index snapshotting and Claude Code/Codex/Copilot/Gemini/OpenClaw MCP wiring. Local-first, PyPI package `fidelis-memory`.
license: MIT
compatibility: Requires Python 3.10+; installs via `pip install fidelis-memory==0.1.0`, executable name is `fidelis`. Zero-LLM retrieval path needs no external API key; optional filter/extraction tiers need Ollama or an Anthropic/OpenAI-compatible endpoint.
---

# fidelis

fidelis is local-first retrieval memory for AI agents and Claude Code. The
default zero-LLM path returns stored passages verbatim — no LLM call, no
rephrasing risk. It layers a compressed markdown snapshot index (~741 tokens)
on top of two-stage recall (BM25 + dense + reciprocal-rank-fusion) for
cross-reference queries flat memory or vector-only RAG miss.

## Use it for

- Standing up a local HTTP memory server an agent host queries before/instead
  of a model call
- Zero-LLM recall (`recall-hybrid`, `recall_b`) where verbatim, unmodified
  text must come back
- Bulk-seeding a corpus from markdown/text files and querying it immediately
- Wiring an MCP memory tool into Claude Code, Codex, GitHub Copilot CLI,
  Gemini CLI, or OpenClaw via `fidelis mcp install`

## Do not use it for

- A hosted, multi-tenant memory platform (this is a local process/service)
- A guarantee that retrieval accuracy transfers unchanged to a different
  corpus or workload — published numbers are project measurements on
  LongMemEval-S, not independent replication
- Proving a model's stored claim is factually true — fidelis returns what was
  stored, it does not fact-check it

## Quickstart

```bash
pip install "fidelis-memory==0.1.0"
fidelis health
```

Or without installing, via [uv](https://docs.astral.sh/uv/):

```bash
uvx --from fidelis-memory fidelis health
```

Real output against a running local instance:

```
status: ok  |  memories: 147980  |  version: 1.0.0a2  |  calibrated: yes  |  snapshot: yes
```

Zero-LLM vector query:

```bash
uvx --from fidelis-memory fidelis query "test query" --limit 2
```

```
2 memories:

  [1]  score 0.686
      User is 'test'

  [2]  score 0.686
      [fact] Reliable testing procedure for Google Rich Results Test: navigate fresh to page, fill test URL textbox, press Escape, click test URL button, wait ~20s for results
```

## Output shape

- `health`: one-line status, memory count, version, calibration/snapshot state
- `query` / `recall` / `recall-hybrid`: ranked `{text, score}` memories, plus
  a `method` field naming the retrieval path taken (`filter`,
  `fallback_*`, `decompose_N[_v]`)
- HTTP endpoints mirror the CLI 1:1 (`/health`, `/recall`, `/recall_hybrid`,
  `/query`, `/store`, `/add`, `/snapshot`, `/replay`)

## Common gotchas

- Executable name is `fidelis`, not `fidelis-memory` — `uvx fidelis-memory`
  fails; use `uvx --from fidelis-memory fidelis <cmd>`.
- The PyPI project literally named `fidelis` is unrelated; install
  `fidelis-memory`.
- The optional filter/extraction tiers call out to Ollama or an
  Anthropic/OpenAI-compatible endpoint — the default `/recall_b` and
  `/query` paths do not.

## More

Full docs, HTTP reference, and module map:
https://github.com/hermes-labs-ai/fidelis

Attribution

hermes-labs-aihermes-labs-ai
View sourceMore from hermes-labs-ai →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →