engram: Claude memory plugin with salience-gated capture and dream cycles

What engram does
engram is a memory plugin for Claude that captures what matters and forgets what doesn't by filtering at capture time instead of logging everything and searching later. The developer built it out of frustration with existing memory plugins.
How it works
Every tool Claude uses gets scored on 5 salience dimensions: Surprise, Novelty, Arousal, Reward, and Conflict. Observations below threshold get evicted, while those above threshold persist to SQLite. The scoring system uses no LLM calls and takes <10ms per observation.
Key features
- Salience-gated capture: Routine actions like
git statusscore low and evict, while significant events like a test failure after a refactor score high and persist. - Automatic injection: 5 hooks handle memory operations automatically: SessionStart, UserPromptSubmit, PostToolUse, PostCompact, and Stop. Users never manually query it.
- Dream cycles: At session end, extracts recurring workflows, error→fix chains, and concept clusters. Optional "deep dream" asks Claude "what did this session mean?" for semantic consolidation.
- Confidence decay: Memories lose confidence daily and get pruned below 0.1, preventing old wrong patterns from distorting future sessions.
- Per-directory isolation: Each project gets its own database to prevent cross-project noise.
- Epistemic labeling: Observations tagged "observed", patterns tagged "inferred (may not be accurate)". The system knows the difference between what happened and what it thinks happened.
Technical details
The dream cycle is what the developer is most excited about — while other memory plugins remember what you did, engram "sleeps on it," consolidating what matters and forgetting the rest, similar to biological memory. The tool is a spinoff from SAGE, a cognition kernel for edge AI, and is currently running across a 6-machine fleet.
The developer is seeking feedback on whether the salience scoring thresholds feel right in practice. The project is available on GitHub under MIT license.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code Skill Converts Stitch Designs to Next.js with Zero Pixel Drift
A Claude Code skill converts Google Stitch AI designs to Next.js components with mandatory verification checkpoints to prevent pixel drift, preserving exact values and handling assets.

OutClaw: GUI Installer and Manager for OpenClaw in Docker
OutClaw is a free, open-source application that installs and manages OpenClaw instances inside Docker containers. It provides a step-by-step GUI for setup, configuration, and connection to AI providers and chat channels without using the command line.

Open-Source Job Search Framework Built in Claude Code
A developer created an open-source job search framework in Claude Code that handles structured self-profiling, automated job portal scraping, fit evaluation, and a drafter-reviewer agent pipeline for tailored applications. The system stops before submission and requires manual review.

Orc: Open Source Multi-Project Orchestrator for AI Coding Agents
Orc is an OS-level orchestrator that coordinates AI coding agents across multiple projects using bash, tmux, and git worktrees. It addresses merge conflicts, duplicated work, and coordination overhead with a two-tier review system and zero token burn on orchestration.