Agent Plugins Marketplace
All plugins

episodic-memory

v1.4.2

Semantic search for Claude Code and Codex conversations. Remember past discussions, decisions, and patterns.

CodexClaude Code1 Skill1 MCP serverstdio

By Jesse VincentLicense: MIT463 GitHub starsUpdated 4 months ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
2 skill or MCP entries
Source updated
May 21, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install episodic-memory for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add episodic-memory@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/obra/episodic-memory

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

episodic-memory/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/remembering-conversations/SKILL.md
└── .mcp.json

Included Skills1

remembering-conversationsskills/remembering-conversations/SKILL.md

You MUST invoke this skill before saying "I don't know," guessing, or treating any topic as new, no matter how trivial the question seems. It supplements other memory systems, which only hold partial records. Searching past conversations is the only way to recover what was actually said.

MCP servers1

episodic-memorystdio
command
node
args
./cli/mcp-server-wrapper.js
cwd
.

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "episodic-memory",
  "version": "1.4.2",
  "description": "Semantic search for Claude Code and Codex conversations. Remember past discussions, decisions, and patterns.",
  "author": {
    "name": "Jesse Vincent",
    "email": "[email protected]"
  },
  "homepage": "https://github.com/obra/episodic-memory",
  "repository": "https://github.com/obra/episodic-memory",
  "license": "MIT",
  "keywords": [
    "memory",
    "search",
    "conversations",
    "semantic-search",
    "episodic"
  ],
  "skills": "./skills/",
  "hooks": "./hooks/hooks.json",
  "mcpServers": "./.mcp.json",
  "interface": {
    "displayName": "Episodic Memory",
    "shortDescription": "Cross-harness conversation memory for Claude Code and Codex",
    "longDescription": "Episodic Memory indexes coding-agent conversations and exposes semantic recall across Claude Code and Codex sessions.",
    "developerName": "Jesse Vincent",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Read"
    ],
    "websiteURL": "https://github.com/obra/episodic-memory",
    "privacyPolicyURL": "https://github.com/obra/episodic-memory",
    "brandColor": "#4F46E5",
    "screenshots": []
  }
}
.claude-plugin/plugin.json
{
  "name": "episodic-memory",
  "version": "1.4.2",
  "description": "Semantic search for Claude Code conversations. Remember past discussions, decisions, and patterns.",
  "author": {
    "name": "Jesse Vincent",
    "email": "[email protected]"
  },
  "homepage": "https://github.com/obra/episodic-memory",
  "repository": "https://github.com/obra/episodic-memory",
  "license": "MIT",
  "keywords": [
    "memory",
    "search",
    "conversations",
    "semantic-search",
    "episodic"
  ],
  "agents": [
    "./agents/search-conversations.md"
  ],
  "mcpServers": {
    "episodic-memory": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/cli/mcp-server-wrapper.js"
      ],
      "env": {}
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[episodic-memory on Agent Plugins Marketplace](https://pluginsmp.com/plugins/episodic-memory)