plugins marketplace
← All plugins

codex-memory-brain

v0.1.9

Local repo-aware engineering memory for Codex and OpenCode, backed by SQLite FTS5 over MCP.

Codex1 skill1 MCP serverstdio

by CristianMIT58updated 2 months ago

Source

git clone https://github.com/ccycv/codex-memory-brain

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

codex-memory-brain/
├── .codex-plugin/plugin.json
├── skills/codex-memory/SKILL.md
└── .mcp.json

Skills1

codex-memoryskills/codex-memory/SKILL.md

Retrieve and maintain local repo-aware Codex memory through the codex-memory-brain MCP server.

MCP servers1

codex-memory-brainstdio
command
python3
args
./server/memory_brain_mcp.py

Manifests1

.codex-plugin/plugin.json
{
  "name": "codex-memory-brain",
  "version": "0.1.9",
  "description": "Local repo-aware engineering memory for Codex and OpenCode, backed by SQLite FTS5 over MCP.",
  "author": {
    "name": "Cristian"
  },
  "license": "MIT",
  "keywords": [
    "codex",
    "memory",
    "mcp",
    "sqlite",
    "local-first"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Codex Memory Brain",
    "shortDescription": "Local durable memory for coding work.",
    "longDescription": "Codex Memory Brain gives coding agents a local, repo-aware memory layer through MCP. It stores durable engineering facts, commands, decisions, gotchas, landmarks, and preferences in SQLite with FTS5 search. The v1 plugin is fully local and makes no network calls.",
    "developerName": "Cristian",
    "category": "Coding",
    "capabilities": [
      "Local SQLite memory store",
      "Repo-aware context retrieval",
      "MCP tools and resources",
      "MCP prompts for visible UI entry points",
      "Structured repo memory audit",
      "Multi-day project continuity checkpoints",
      "OpenCode goal tracking companion",
      "Secret and prompt-injection safeguards"
    ],
    "defaultPrompt": "Use codex-memory before repo work. Show Memory Brain status and save durable non-secret repo facts."
  },
  "mcpServers": "./.mcp.json"
}