Plugin Claude Code
Per-project, in-repo memory system for Claude Code — the cross-session memory the kit's whole thesis is about.
Plugin Claude Code
Per-project, in-repo memory system for Claude Code — the cross-session memory the kit's whole thesis is about.
Agent Claude Code
Deep implementation work delegated by the lead — writing kit code, writing tests (five-exit-doors discipline), debugging failures, and the implementer self-review pass on a diff. Use for any coding work bigger than a trivial edit. Runs on Opus.
Agent Claude Code
Mechanical, low-judgment work delegated by the lead — boilerplate, scaffolding, multi-file sweeps and renames, doc formatting, test fixtures, applying an exactly-specified pattern across many files. NOT for tests, logic, or anything requiring design judgment. Runs on Sonnet.
Agent Claude Code
The independent review pass on a diff or PR — ONE holistic pass over the full change (code + tests + docs together), findings ranked Blocking/Important/Minor. Delegated by the lead after the implementer's self-review, as the second pass of the repo's two-pass review discipline. Runs on Opus.
MCP server Claude CodeCodexCursor +2
MCP server "cmk" as configured in LH8PPL/core-memory-kit. Launched with cmk mcp serve.
Instructions file
Instructions for LH8PPL/core-memory-kit, covering core-memory-kit — project claude.md, what this project is, read these in order (10 minutes total), working style (locked in by the user) and engineering discipline (binding).
Plugin Claude Code
Per-project in-repo memory system for Claude Code. Frozen-snapshot session loads, auto-extract Stop hook, memory-write + memory-search + troubleshooting skills, keyword search, optional auto-curation crons.
Hook
Runs when the agent asks permission for an action for mcp__cmk__.* and Skill tool calls, executing cmk-approve-permission.mjs via node (2 commands). From LH8PPL/core-memory-kit.
Hook
Runs once when the project is set up, executing cmk-version-check.mjs via node. From LH8PPL/core-memory-kit.
Hook
Runs when a session starts, executing cmk-inject-context.mjs via node. From LH8PPL/core-memory-kit.
Hook
Runs when you submit a prompt, before the agent sees it, executing cmk-capture-prompt.mjs via node. From LH8PPL/core-memory-kit.
Hook
Runs after a tool call finishes for Write, Edit and MultiEdit tool calls, executing cmk-observe-edit.mjs via node. From LH8PPL/core-memory-kit.
Hook
Runs when the agent finishes a response, executing cmk-capture-turn.mjs via node. From LH8PPL/core-memory-kit.
Hook
Runs when a session ends, executing cmk-compress-session.mjs via node. From LH8PPL/core-memory-kit.
Hook
Runs before the context is compacted, executing cmk-precompact.mjs via node. From LH8PPL/core-memory-kit.
Skill Claude CodeCodex
Scaffolds the core-memory-kit directory structure (context/, scripts/, cron/jobs/) into the current project. Idempotent — never overwrites existing files. Run once per project after installing the plugin. Use when the user says "bootstrap the memory system", "set up memory here", or "scaffold the memory kit".
Skill Claude CodeCodex
Searches the project's recorded memory (core-memory-kit) — decisions, conventions, architecture, the reasoning behind choices, and where things live — and returns a curated, cited summary. Fire whenever the answer might be something the project already established in past work, HOWEVER the question is phrased — any…
Skill Claude CodeCodex
Captures a durable fact to project memory through the kit's safe write path (PoisonGuard secret/injection screening + home-path sanitization + dedup + conflict detection) — preferring the cmk MCP tools (mkremember / mkforget / mktrust) when connected, falling back to the cmk CLI. Use when the user says "remember…
Skill Claude CodeCodex
Diagnoses and repairs core-memory-kit itself when the memory system is broken — the per-failure-code repair book. Fire whenever a "⚠ [core-memory-kit]" whisper appears on the prompt (it names the failure and points here), or when the user reports a kit symptom however they phrase it: memory is not being saved, nothing…
Command Claude Code
Tour this project's memory — what's captured, where it lives, how to recall it (core-memory-kit).