memory
Durable, provenance-bound memory for project decisions, constraints, procedures, facts, and bounded episodes. The plugin adds a portable memory contract, capture/recall/review commands, a standard-library provider adapter, and opt-in Claude lifecycle hooks.
The bundled rag provider gives offline semantic recall using indexkit,
which is a hard dependency. MemPalace remains optional and is installed
separately. indexkit is also the general corpus RAG engine;
context-handoff remains the authoritative current-task artifact.
Install
# GitHub Copilot
copilot plugin marketplace add mbeacom/context-kit
copilot plugin install memory@context-kit
# APM
apm marketplace add mbeacom/context-kit
apm install memory@context-kit
# Claude Code
/plugin marketplace add mbeacom/context-kit
/plugin install memory@context-kit
Installing memory also installs context-handoff, verify, and
retrieval-core.
Without a plugin host: the memorykit package
The contract, validator, and MCP server are also packaged as memorykit, a
pure-standard-library Python package (ADR-0002, ADR-0009).
pip install memorykit # or: uv tool install memorykit
To work from a clone instead — for contributing, or to run an unreleased revision:
# From a clone of https://github.com/mbeacom/context-kit
pip install ./plugins/memory # or: uv tool install ./plugins/memory
Either way that is the whole install: no bootstrap step, no plugin runtime, no Claude-specific paths.
export CONTEXT_KIT_MEMORY_PROJECT=owner/repository
memorykit validate record.md
memorykit capture record.md
memorykit search "why did we change retry policy"
memorykit-mcp # stdio MCP server, for an MCP client to spawn
Requirements: Python 3.10+ and git on PATH. The package has no Python
package dependencies — pip install pulls in nothing else, and the test suite
enforces that, because being importable with an empty site-packages is what
makes this separable from the plugin at all. It is not, however, free of system
dependencies: validate and capture shell out to git check-ref-format to
check the branch field, so both refuse on a machine with no git. That is
deliberate. Reimplementing Git's refname rules in Python would be a fresh,
unreviewed reimplementation of a validation the contract depends on, and skipping
the check when git is missing would silently weaken provenance exactly where a
mistake benefits from it. Records describe a Git checkout — they carry
repository, branch, and head — so requiring Git to validate one is close to
tautological.
What the package does not include is the plugin — the memory-workflows
skill, the /capture-memory, /recall-memory, /review-memory, and
/archive-handoff commands, and the lifecycle hooks are agent-host content, not
a Python package, and remain plugin-only. The package is the engine; the plugin
is the engine plus the workflow that drives it.
The plugin bundles this same code and prefers its bundled copy over any
installed memorykit, so plugin version X always runs provider version X. That
is the reverse of the indexkit launcher's preference, and deliberate.
Local-only reviewed records
Python 3.10+ and Git on PATH are required. Configure an explicit project and
plugin root:
export CONTEXT_KIT_MEMORY_PROJECT=owner/repository
export CONTEXT_KIT_MEMORY_ROOT="/path/to/context-kit/plugins/memory"
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" validate record.md
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" \
capture record.md --provider none
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" \
search "why did we change retry policy" --provider none
Records default to ~/.local/share/context-kit/memory; override with
CONTEXT_KIT_MEMORY_HOME. Local recall searches reviewed primary memories and
cue anchors without requiring an external provider. Active recall uses only
effective accepted/current records. Captured record files never change:
record-state <id> --reason ... appends reviewed state transitions instead.
Use search --include-inactive for a local audit of inactive history.
Semantic recall with the bundled rag provider
Local recall is lexical. For meaning-based recall, use the first-party rag
provider — this repository's indexkit plugin, installed automatically as a
dependency, so no external memory provider is required. It still needs a
running Ollama for embeddings, plus a usable indexkit runtime:
pip install indexkit # or: bash plugins/indexkit/scripts/bootstrap.sh
ollama pull nomic-embed-text
export CONTEXT_KIT_MEMORY_PROVIDER=rag
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" doctor
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" sync-provider --apply
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" \
search "why did we change retry policy"
doctor resolves the indexkit executable and reports ready for either a
packaged install or the plugin's bootstrapped venv. When neither is usable it
refuses with the exact bootstrap command; doctor --bootstrap builds the venv
in place, which needs uv. Claude Code and GitHub Copilot CLI both run the
indexkit SessionStart hook, so this matters most on APM, which does not
deploy hooks, and after an upgrade leaves a stale venv.
Records stay the system of record: the index is a rebuildable projection of
accepted/current records, and hits are bound back to those records before being
returned. If the provider is unreachable, search falls back to lexical local
search and labels the result degraded_from rather than passing lexical hits
off as semantic recall. A stale index refuses instead of degrading.
See references/provider-rag.md.
Optional MemPalace provider
uv tool install mempalace
export CONTEXT_KIT_MEMORY_PROVIDER=mempalace
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" doctor
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" \
search "why did we change retry policy"
Each configured project gets an isolated MemPalace palace. The adapter uses
exact argv with no shell, preserves records locally, and never installs or
imports MemPalace itself. Only sync-provider --apply writes or rebuilds the
provider store. Eligible capture records a pending-sync receipt; run an
explicit sync after eligible captures or state changes before provider-backed
recall. Reconciliation preserves the immediately previous store before replacement and
removes older generated backups after the success receipt is durable.
Mine past Copilot sessions
propose-from-session extracts the human-visible conversation from GitHub
Copilot CLI logs into reviewable candidates. It proposes; it never captures:
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" \
propose-from-session ~/.copilot/session-state # dry run, writes nothing
python3 "$CONTEXT_KIT_MEMORY_ROOT/scripts/memory-provider.py" \
propose-from-session ~/.copilot/session-state --write
Only top-level human and assistant turns are retained. Subagent task prompts,
generated skill/agent/command context, tool-nested messages, and model reasoning
are excluded by construction — across a real 115-session corpus only 24 of 729
user.message events were actually human-authored. Detected credentials block
the write unless --redact is passed. A transcript is not an atomic memory, so
authoring a memory-v1 record from a candidate stays an explicit judgment step.
See references/session-mining.md.
MCP surface
An optional stdio MCP server exposes memory_recall, memory_capture, and
memory_review so hosts that consume skills plus MCP can use durable memory.
GitHub Copilot and Claude Code plugin installs discover it automatically;
package-only hosts can launch it directly. It is standard library only and
shells out to the same provider, so the CLI and MCP paths cannot drift.
# From the plugin:
CONTEXT_KIT_MEMORY_PROJECT=owner/repository \
python3 "$CONTEXT_KIT_MEMORY_ROOT/mcp/server.py"
# From the package, with no plugin at all:
CONTEXT_KIT_MEMORY_PROJECT=owner/repository memorykit-mcp
The bundled .mcp.json forwards explicit project/home configuration into the
plugin process. GitHub Copilot Desktop can additionally bind the MCP child to
the active project through trusted host data: SessionStart requires payload
sessionId to exactly match COPILOT_AGENT_SESSION_ID, then resolves payload
cwd to the Git top-level and accepts only a canonical
github.com/owner/repository origin on POSIX. It stores only that session ID and
project under the private memory home and removes the binding on SessionEnd.
Explicit --project, CONTEXT_KIT_MEMORY_PROJECT, deprecated
PRODUCTIVITY_SKILLS_MEMORY_PROJECT, and CLAUDE_PLUGIN_OPTION_PROJECT take
precedence, in that order, over the binding. MCP cwd, PWD, prompts, and tool
arguments never select scope. APM, package-only use, and hosts without the
matching Copilot hook/session ID still require explicit configuration. The same
is true on Windows and for other Git hosts or deeper repository namespaces,
whose privacy or identity cannot be represented safely by this automatic path.
MCP capture records must use an absolute source path because plugin hosts may
launch the server outside the active repository.
The surface can propose memory but cannot activate it: a record whose
frontmatter is not review: proposed is refused, and proposals stay out of
active recall until promoted with the append-only record-state CLI.
sync-provider, promotion, mining, and destructive operations are not exposed.
Opt-in lifecycle queue
Recall and payload-queue behavior is inert until enabled:
export CONTEXT_KIT_MEMORY_PROJECT=owner/repository
export CONTEXT_KIT_MEMORY_AUTO_CAPTURE=true
Enabled hooks queue exact payloads locally for explicit review; they never create
memory records or mutate a provider store. Claude Code and GitHub Copilot CLI
both load hooks/hooks.json; APM does not deploy hooks, so capture stays an
explicit command there.
Copilot's routing-only SessionStart binding is the bounded exception: it is
created even when both switches are off, contains no transcript or secret, and
is cleaned at SessionEnd (not Stop/agentStop). It is ephemeral routing
metadata, not automatic memory capture.
Components
| Component | Purpose |
|---|---|
memory-workflows skill |
Capture, recall, freshness, cue, and consolidation policy. |
/capture-memory |
Build and validate one reviewed durable record. |
/recall-memory |
Search memory, then pin current evidence. |
/review-memory |
Review freshness, conflicts, and consolidation proposals. |
/archive-handoff |
Explicitly preserve a validated handoff as historical memory. |
memory-provider.py |
Launcher for the memorykit provider: stdlib validator, local store, MemPalace adapter, and hook dispatcher. |
src/memorykit/ |
The packaged memorykit engine: contract, validator, provider, MCP server. |
Safety boundaries
- New records start proposed and retain immutable evidence.
- Recall results are leads, not proof.
- Consolidation creates supersession history; it does not erase evidence.
- Lifecycle payload queuing is disabled by default.
- Project data never falls back to a global provider store.
- MemPalace and Memora informed the design; this implementation is independent.
Supported providers
Three provider modes are supported: none (lexical, no dependencies), rag
(first-party offline semantic recall via the bundled indexkit dependency),
and mempalace (optional, installed separately). Memora informed the memory
contract design but is not a runtime provider today.
See skills/memory-workflows/references/provider-qualification.md
for the full qualification policy and the current decision table with revisit
triggers for Memora.
Release files for memorykit 0.8.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| memorykit-0.8.0.tar.gz | 49.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| memorykit-0.8.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 94.4 kB
Release files / memorykit-0.8.0.tar.gz
| Download URL | memorykit-0.8.0.tar.gz |
|---|---|
| Size | 49.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
be5e0e1a51c69ef9e2eabe99597d743ad7c14f5ebb356c0acc209406e76de3ba
|
|
BLAKE2b-256 checksum How to use checksums |
793c6b8c9e905df86e2c0ab6142fe26c6e70eaf132f850d873cfb057a4f587da
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / memorykit-0.8.0-py3-none-any.whl
| Download URL | memorykit-0.8.0-py3-none-any.whl |
|---|---|
| Size | 44.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
aec919722a625982741c6068031a3f4bdec64f859a746dbaf1fa49a94d7df54e
|
|
BLAKE2b-256 checksum How to use checksums |
536d4d1ea726d81e1bc8daa1b0a17d7b9a55e9eab2105baaef1c4787d7e87e3f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log