engram v3.4.0 Adds Anthropic Plugin to Keep Claude Code Running Under New Rate Limits

engram v3.4.0 addresses the recent rate-limit reductions and the impending removal of Claude Code from the Pro tier by exposing a dedicated Anthropic plugin. The plugin bundles an MCP server config that instantiates a shared memory layer locally, surviving file edits and IDE switches without extra latency.
Key Features
- Three new skills accessible via slash commands in Claude Code:
/engram:costfor token spend queries,/engram:queryfor fast context retrieval, and/engram:mistakesto surface recent execution errors. - Zero-config MCP integration — the MCP server runs locally, so the context spine is instantiated the first time a skill runs, with no additional setup.
- Cross-IDE persistence — the shared memory layer persists across file edits and even across different IDEs, enabling continuity.
Installation
CLI (one line):
npm install -g engramx@latest engram setup # detects Claude Code automatically
Via Claude Code marketplace: Once the listing appears, run /plugin install engram.
What It Solves
Claude Code users have faced sudden rate-limit reductions with the product's looming removal from the Pro tier. engram's plugin provides a local, latency-free memory layer that helps manage API consumption (via cost queries) and recover from errors quickly (via mistake surfacing). The MCP server runs locally, so no external dependencies are introduced.
Who It's For
Developers who rely on Claude Code and need to work around tighter rate limits while maintaining continuity across sessions.
Resources
- Source code & issues: github.com/NickCirv/engram
- npm package:
engramx
📖 Read the full source: r/ClaudeAI
👀 See Also

Developer shares hybrid AI coding workflow: Claude for planning, local models for execution
A developer built a pipeline using Claude 3.5 Sonnet for task planning and local Qwen2.5-Coder models via Ollama for code generation, achieving 85% token reduction compared to using Claude alone.

CLI-Anything-WEB: Open-source plugin that reverse-engineers any website into a Python CLI for Claude Code
CLI-Anything-WEB is an open-source Claude Code plugin that watches your browser traffic, reverse-engineers the protocol, and generates a full Python CLI with auth, tests, and --json support. 19 sample CLIs included for sites like Reddit, Booking, Airbnb, ChatGPT, and LinkedIn.

ClaudeClaw: Free Claude Code Plugin for Persistent AI Agents on Messaging Platforms
ClaudeClaw is a free, open-source MIT-licensed Claude Code plugin that runs Claude as a persistent agent on Slack, WhatsApp, and Telegram. It requires Node.js 20+, Claude Code, and your own Anthropic API key, with OS-level sandbox isolation via Anthropic's sandbox-runtime.

Building a Local Voice AI Assistant with SwiftUI and CSM-1B on Apple Silicon
A developer built mobiGlas, a SwiftUI app that pairs with OpenClaw to enable hands-free conversations via AirPods, using local voice cloning (CSM-1B on M2 Ultra) and no cloud APIs.