EverMe

June 4, 2026 · View on GitHub

EverMe

X Discord CI License

Open-source CLI and Agent plugin suite for EverMe — cross-device, cross-Agent personal memory for AI Agents.

Product · Website · EverOS engine · Documentation · 中文


Table of Contents

Project Overview

EverMe is your digital twin powered by a memory that's truly yours. Every conversation becomes experience; every experience becomes mastery — the Agent evolution loop.

This repository ships the client-side toolchain that connects any AI Agent — Claude Code, Cursor, Codex, Hermes, OpenClaw, and others — to the EverMe memory layer. The managed service and the EverOS memory engine live separately:

LayerWhat it gives youWhere it lives
EverMe CLI + plugins (this repo)Auth, plugin install, MCP server, Agent hooksEverMind-AI/EverMe (Apache-2.0)
EverOS memory engineThe long-term memory operating systemEverMind-AI/EverOS (open source)
EverMe managed serviceHosted backend, account, billingevermind.ai/everme

You can run EverMe fully against the managed service today, or self-host the EverOS engine and point the CLI at your own endpoint via EVERME_API_BASE.


Quick Start

Easiest — let your Agent install it for you

Paste this single line into any AI Agent you already use locally (Claude Code, Cursor, Codex, …):

Read https://everme.evermind.ai/SKILL.md and follow the instruction to install and configure EverMe.

The Agent fetches the skill, installs the CLI, walks you through login, and registers the plugin for itself — no manual steps.

Manual install

# 1. Install the CLI
npm install -g @everme/cli

# 2. Authenticate (opens browser for Device Flow)
evercli auth login

# 3. Plug your Agent into EverMe — pick one or more:
evercli plugin install claude-code
evercli plugin install claude-desktop
evercli plugin install codex
evercli plugin install cursor
evercli plugin install gemini
evercli plugin install hermes
evercli plugin install opencode
evercli plugin install openclaw

# 4. Verify
evercli doctor

Once installed, open your Agent and ask "what do you remember about me?" — it will use the MCP mem://profile resource to recall.

Self-hosting EverOS? Set EVERME_API_BASE=https://your-host before auth login and the CLI will talk to your endpoint instead.


What's Inside

PathPackagePurpose
cli/evercliGo CLI for auth, plugin install, importers, doctor
plugins/agent-sdk/@everme/agent-sdkShared HTTP client + evt_*/emk_* redaction
plugins/memory-mcp/@everme/memory-mcpMCP server exposing mem://profile and mem://search
plugins/claude-code/@everme/claude-codeNative Claude Code plugin (hooks · commands · skills · MCP)
plugins/openclaw/@everme/openclawOpenClaw ContextEngine plugin
plugins/cli/@everme/clinpm wrapper that downloads the platform-native evercli binary
plugins/everme/Codex marketplace pluginCodex App / Codex CLI recall via MCP resources

Use It With Your Agent

Each Agent has its own configuration surface. evercli plugin install <agent> writes the right file at the right path, with 0600 permissions for any credential-bearing config.

AgentInstall commandWhat gets configured
Claude Codeevercli plugin install claude-code~/.claude/everme.env + plugin registration
Codex (App + CLI)evercli plugin install codex~/.codex/config.toml MCP entry + marketplace plugin
Cursorevercli plugin install cursorCursor MCP config
Hermesevercli plugin install hermes<hermes_home>/everme.env + ~/.hermes/config.yaml MCP entry
Claude Desktopevercli plugin install claude-desktopClaude Desktop MCP config
OpenClawevercli plugin install openclawOpenClaw plugin registration

The memory each Agent reads and writes lives in one shared memory pool keyed to your account — so context follows you, not the app.


Architecture

┌──────────────────┐    ┌──────────────────┐    ┌──────────────────┐
│  Claude Code     │    │  Codex / Cursor  │    │  Hermes / etc.   │
└────────┬─────────┘    └────────┬─────────┘    └────────┬─────────┘
         │ MCP / Hooks           │ MCP                   │ MCP
         ▼                       ▼                       ▼
   ┌───────────────────────────────────────────────────────────┐
   │  @everme/* plugins  +  evercli  (this repo)               │
   │  - mem://profile  / mem://search    (MCP resources)       │
   │  - tools: mem_save_fact, mem_save_turn, mem_context, …    │
   │  - per-agent token storage at 0600                        │
   └────────────────────────┬──────────────────────────────────┘
                            │ HTTPS + Bearer evt_*

   ┌───────────────────────────────────────────────────────────┐
   │  EverMe gateway  →  EverOS memory engine                  │
   │  (managed: api.everme.evermind.ai · self-host: your URL)  │
   └───────────────────────────────────────────────────────────┘

Memory is global per user (not per workspace) — multiple Agents on multiple devices share the same memory pool, with semantic search providing relevance ranking.


Development

# CLI (Go)
cd cli
make build
make test          # go test -race ./...

# Plugin workspace (Node)
cd plugins
npm ci
npm test --workspaces --if-present

Release flow and packaging are documented in cli/README.md and Makefile (make dist builds a clean source tarball).


Public Contracts

EverMe is read by AI Agents as much as by humans. The stable contract for CLI stdout/stderr, structured errors, MCP tools/resources, and token redaction is documented in docs/contracts.md. Changes that break those contracts are versioned.


Security

Do not paste API keys, emk_* keys, evt_* agent tokens, cookies, or private logs into issues or pull requests. See SECURITY.md for the private reporting path (security@evermind.ai).


Contributing

See CONTRIBUTING.md. Bug reports, plugin support for new Agents, and additional importers are all welcome.


License

Apache-2.0. © 2026 EverMind AI.