everme-memory

everme-memory is a skill for Claude Code, Codex from EverMind-AI/EverMe. It costs 91 tokens per session (1,297 once invoked), scanned B, original, Apache-2.0.

A persistent-memory skill that recalls information from earlier Codex sessions and saves relevant details for later work.

In plain words
What is it for?
It helps continue earlier work, recall past conversations and errors, and retain useful preferences or decisions.
Why use it?
It reduces the need to repeat project conventions, past decisions, user preferences, and previously solved problems in new sessions.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/evermind-ai/everme/everme-memory
Any agent
npx skills add EverMind-AI/EverMe --skill everme-memory
Clone the repo
git clone --depth 1 https://github.com/EverMind-AI/EverMe

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 everme-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/evermind-ai/everme/everme-memory.svg)](https://agentmods.dev/skills/evermind-ai/everme/everme-memory)
Your own site
<a href="https://agentmods.dev/skills/evermind-ai/everme/everme-memory"><img src="https://agentmods.dev/badge/skills/evermind-ai/everme/everme-memory.svg" alt="Measured on agentmods" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,297 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
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 $0.00091 $0.01297
Opus 5 $0.00046 $0.00648
Sonnet 5 $0.00018 $0.00259
Haiku 4.5 $0.00009 $0.00130

Measured yesterday against content hash 019b5207dd4e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

everme-memory scanned grade B with 1 finding 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 yesterday.

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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

`~/.codex/config.toml::mcp_servers.everme` (auto-managed by
plugins/everme/skills/everme-memory/SKILL.md · 100 lines

How it starts

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

EverMe Memory (Codex)

This skill connects you to EverMe's persistent memory across sessions.

How memory reaches you on Codex

EverMe lifecycle hooks work independently of the model-facing tool surface:

  • SessionStart injects the user's profile.
  • UserPromptSubmit searches and injects relevant memory.
  • Stop saves the latest completed turn and flushes every five turns.
  • PreCompact flushes pending extraction before compaction.

These hooks are fail-open: a memory backend error never blocks Codex. The MCP server remains available for explicit reads and writes chosen by the model.

Codex variants differ in what the LLM-facing tool layer surfaces:

  • Codex App (the desktop GUI, observed v0.128/v0.133) — the LLM layer routinely exposes MCP Resources (list_mcp_resources / read_mcp_resource); MCP Tools (tools/call) are visible in the /mcp panel but typically NOT exposed to the LLM as callable functions.
  • Codex CLI (the codex terminal command) — has been observed to expose both Resources and Tools to the LLM in practice.

The memory server is configured under ~/.codex/config.toml::mcp_servers.everme (auto-managed by evercli plugin install codex).

Two URIs are available:

URI What it returns When to read
mem://profile The user's durable Profile ONLY (preferences, habits, traits, long-term decisions), rendered as markdown. It never performs semantic search and never contains episodes, raw messages, or agent cases/skills. Once at the start of a conversation when no <everme_profile> block was injected. Do not use it as a fallback for recalling past decisions or task context — that is mem://search's job.
mem://search?q={query}&topK={topK} Search results across episodic memories, profile entries, agent cases/skills, and the recent raw transcript, rendered as markdown (raw rows appear under a provisional unextracted-transcript header — never quote them as established facts). Keep q short — a few keywords or one short phrase, not a long passage; topK defaults to 10, omit it. When the user references prior context ("what did we say about X", "remember when…", "based on what we decided last week…", "did we fix this before") and the injected <everme_recall> block is missing, empty, or clearly unrelated. Do not repeat a search the recall block already answers, and do not repeat an identical query within the same turn.

Read the full file on GitHub · 100 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. yesterday Changed · -11 lines 019b5207dd4e
  2. 5d ago First seen · 111 lines · 91 tokens per session scan B b04ee570a2fe

Subscribe to this mod's changes

everme-memory is a skill published in the GitHub repository EverMind-AI/EverMe (59 stars, last pushed yesterday), licensed Apache-2.0. It adds 91 tokens to every session and 1,297 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

dashboard

Open OwnMem Console, the local dashboard for this repository's memory. Use when the user asks to open the dashboard, see memory metrics, check adoption or recall quality, or set up the optional embedding lane. Requires a repository initialized with the dashboard layer.

grpcer/ownmem · 53 tokens

recall

Recall this repository's OwnMem local memory before changing code, and keep it healthy. Use when a repository contains .ownmem/, when past debugging lessons could apply ("have we hit this before", "why is it done this way"), or when the user mentions ownmem, project memory, or recalling across sessions.

grpcer/ownmem · 66 tokens

init

Install or update OwnMem in the current repository. Use when the user asks to set up OwnMem, add local project memory for coding agents, or refresh an existing OwnMem installation after a version bump.

grpcer/ownmem · 43 tokens

cargo-content

Manage the knowledge a Cargo workspace holds — upload files (PDF, CSV, text), rename and organize them, and build native or connector-backed libraries that sync from an external source, so agents can retrieve them (RAG). Triggers: "upload this PDF", "add these docs as knowledge", "build a knowledge base", "sync our…

getcargohq/cargo-skills · 129 tokens

immortal-skill

通用数字永生框架:从聊天记录、社交媒体、文档等多平台数据中蒸馏任何人的数字分身——支持自己、同事、导师、亲人、伴侣/前任、朋友、公众人物 7 种角色模板,接入国内外 12+ 数据平台。.

agenmod/immortal-skill · 76 tokens

chen-yun-demo

蒸馏陈韵的全维度数字分身:产品设计方法、沟通风格、人生经历与价值观。仅用于个人备份与辅助回忆,非对外冒充。.

agenmod/immortal-skill · 51 tokens