Skip to content
This repository was archived by the owner on Sep 5, 2026. It is now read-only.

v2.7.0 — pip install cogmem

Choose a tag to compare

@dcondrey dcondrey released this 06 Jul 18:59
· 16 commits to main since this release
Immutable release. Only release title and notes can be modified.
4cf532b

cogmem is now a pip-installable package.

Install

pip install cogmem            # CLI + MCP server + verifiable-memory tools
pip install 'cogmem[recall]'  # add local semantic recall
cogmem init                   # wire the Claude Code hooks + build the index

Or run the MCP server on demand: uvx cogmem mcp.

Highlights

  • PyPI packaging (#7): the engine is now an importable cogmem package with a cogmem console script and a core/[recall] dependency split (provenance tools need only cryptography + cbor2).
  • Full loop via pip: cogmem init records the interpreter, materializes the hooks, wires settings.json, and builds the index — so pip install gives the complete Claude Code integration, not just the CLI. Hooks now run python -m cogmem.<module> and work for both clone and pip installs.
  • COGMEM_HOME isolation: runtime artifacts (recall socket, index) live under COGMEM_HOME; note.py and all hooks honor it.
  • Cross-platform daemon (#8): Linux systemd --user service alongside macOS launchd.
  • Reproducible MCP Dockerfile (#6).
  • Publishing via PyPI Trusted Publishing (OIDC).
  • Tests 87 → 125.