Engramx v3.4: MCP Server + SQLite Knowledge Graph Cuts Claude Code Token Usage by 89%

Engramx v3.4 is an MCP server combined with a SQLite-based knowledge graph that intercepts file reads at the agent boundary. When Claude Code attempts to read a file that engram has indexed, the hook returns a structural summary instead of the raw content. The result: the same edit, same diff, but far fewer tokens consumed per round trip.
Key details
- Benchmark: Real 87-file codebase; aggregate token reduction 89.1%. Best-case file dropped from 18,820 tokens to 306. The benchmark script is
bench/real-world.ts— you can run it on any project you own. - IDE support: Works across 8 IDEs natively: Claude Code (hooks + official plugin in review), Cursor (MDC + MCP + VS Code extension on OpenVSX), Cline, Continue.dev, Aider, Windsurf, Zed, and OpenAI Codex CLI. One install, one graph, all tools benefit.
- Local-first: SQLite database lives at
.engram/graph.dbin your repo. Nothing leaves your machine. Apache 2.0 licensed. No account, no telemetry. - Install:
npm install -g engramxthencd ~/your-projectandengram setup. For Cursor, runcode --install-extension nickcirv.engram-vscode. - Tracking: The
engram costcommand shows token savings per project per week. After 24 hours of normal use, the digest displays real numbers. - Upcoming v4.0 “Mesh + Spine”: Releases May 25. Opt-in federation layer for sharing mistakes and ADRs across machines without sharing source. Phase 1 already merged: ed25519 identity, 14-category PII gate, 1007 tests.
The tool directly addresses hitting Claude Code Max 5x limits in under 2 hours on real work — a single complex prompt jumping the session counter from 21% to 100%.
📖 Read the full source: r/ClaudeAI
👀 See Also

Orc: Multi-Agent Coding Orchestration Tool Adds Planning and Notification Features
Orc is an open-source tool that orchestrates AI coding agents across projects with a local TUI interface. The latest release adds planning as a first-class phase, notification systems for human intervention, and natural language lifecycle hooks.

Manual-Driven Development: A Method to Prevent Claude Code's Confident Divergence
Manual-Driven Development (MDD) is a method that addresses confident divergence in Claude Code, where the AI produces wrong code that passes its own tests. In a production audit, MDD found 190 issues, wrote 876 new tests in under 8 hours, and eliminated rule violations.

Claudigotchi: Physical Tamagotchi Device That Feeds on Claude Code Activity
Claudigotchi is a physical desktop creature running on an ESP32 with an LCD screen that connects to Claude Code via a plugin. The device's hunger system responds to coding activity, with visual states and sound effects that escalate when Claude is left idle.

Crime Team: Multi-Agent Orchestrator for OpenClaw — Parallel Code Review with Coder Agent
Crime Team v0.1 runs multiple specialist OpenClaw agents in parallel for code review, then integrates findings. Includes per-agent models, a coder agent that applies changes, and a re-audit loop. CLI + GUI.