← All plugins
memx
v2026.3.15memX: local-first semantic memory for coding agents. Native Codex lifecycle hooks.
CodexClaude Code1 skill1 MCP serverstdio
by Neo LiMIT465updated 2 months ago
Source
git clone https://github.com/NeoLi00/memXClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
memx/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/memx/SKILL.md└── .mcp.json
Skills1
memxskills/memx/SKILL.md
Use when an agent needs to recall, save, inspect, or audit memX memories through the bundled MCP tools.
MCP servers1
memxstdio
- command
- node
- args
- ${CLAUDE_PLUGIN_ROOT}/dist/.runtime/src/bin/memx-mcp.mjs
- env.MEMX_URL
- ${MEMX_URL}
- env.MEMX_SECRET
- ${MEMX_SECRET}
- env.MEMX_MCP_TOOLS
- none
MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.
Manifests2
.codex-plugin/plugin.json
{
"name": "memx",
"version": "2026.3.15",
"description": "memX: local-first semantic memory for coding agents. Native Codex lifecycle hooks.",
"author": {
"name": "Neo Li"
},
"license": "MIT",
"homepage": "https://github.com/NeoLi00/memX",
"repository": "https://github.com/NeoLi00/memX",
"hooks": "./hooks.json",
"interface": {
"displayName": "memX",
"shortDescription": "Local semantic memory for coding agents.",
"longDescription": "memX adds local-first lifecycle memory through native hooks. It recalls relevant context before each turn and writes completed turns after the agent responds.",
"developerName": "Neo Li",
"category": "Productivity",
"capabilities": [
"Read",
"Write"
],
"websiteURL": "https://github.com/NeoLi00/memX",
"privacyPolicyURL": "https://github.com/NeoLi00/memX",
"termsOfServiceURL": "https://github.com/NeoLi00/memX",
"defaultPrompt": [
"Use memX automatic memory hooks."
],
"brandColor": "#2563EB"
}
}.claude-plugin/plugin.json
{
"name": "memx",
"version": "2026.3.15",
"description": "memX: local-first semantic memory for coding agents. Native Claude Code lifecycle hooks.",
"author": {
"name": "Neo Li"
},
"license": "MIT",
"homepage": "https://github.com/NeoLi00/memX",
"repository": "https://github.com/NeoLi00/memX"
}