Mengram AI: Auto-Memory Tool for Claude Code Sessions

What Mengram AI Does
Mengram AI solves the problem of Claude Code sessions starting from zero by automatically maintaining context between sessions. Instead of manually maintaining CLAUDE.md files, this tool handles memory automatically through hooks that fire during the session lifecycle.
Setup and Commands
Installation requires two commands:
pip install mengram-ai
mengram setupOnce installed, you can check status or uninstall with:
mengram hook status— see what's installedmengram hook uninstall— remove everything cleanly
How It Works
The tool operates through three automatic phases:
- Session start — loads your cognitive profile (who you are, your stack, preferences)
- Every prompt — searches past sessions for relevant context and injects it
- After response — saves new knowledge in the background
No manual saves or tool calls are required.
Memory Types
Mengram stores three types of memory:
- Semantic — facts like "uses Python 3.12, deploys to Railway"
- Episodic — events like "migration failed yesterday, fixed by adding pre-deploy check"
- Procedural — workflows that update themselves when something fails
Procedural Memory Evolution
The procedural memory automatically evolves based on failures. For example, a deployment workflow might progress through versions:
v1: build → push → deploy
v2: build → run migrations → push → deploy
v3: build → run migrations → check memory → push → deployWhen Claude helps with deployment next time, it already knows the latest version (v3 in this example).
Technical Details
The tool is open source under Apache 2.0 license. It works with Claude Code and includes an MCP server for Claude Desktop, Cursor, and Windsurf.
📖 Read the full source: r/ClaudeAI
👀 See Also

MoltMarket: A Marketplace for Hiring AI Agents to Execute Digital Tasks
MoltMarket is a free platform where users can post jobs for AI agents to complete autonomously. The marketplace currently has 100+ users and verified agents that can handle tasks like web scraping, code generation, and content writing.

Self-Hosted GitHub Bot Runs Claude Code with 40+ Webhook Triggers and MCP Tools
A self-hosted GitHub bot leverages Claude Agent SDK with full Claude Code features, supporting 40+ webhook triggers, 4 built-in MCP servers, and custom YAML-based workflows for PR review, CI auto-fix, and issue triage.

Claude Desktop App Adds Projects Feature to Cowork Interface
The Claude desktop app now includes a Projects feature in Cowork, allowing users to organize tasks and context in dedicated workspaces. Files and instructions remain on the user's local computer, with options to import existing projects or start new ones.

civStation: A VLM System for Playing Civilization VI via Natural Language Commands
civStation is a computer-use VLM harness that plays Civilization VI by translating high-level natural language commands into in-game actions. The system uses a 3-layer architecture separating strategy and execution, with support for human-in-the-loop intervention.