AgentWorkingMemory: A Local Memory System for AI Coding Agents

What AgentWorkingMemory Solves
AI coding agents like Claude Code lack persistent memory between sessions. Developers end up re-explaining architecture, database schemas, and previous decisions every time they start a new session, wasting time and context window space. While Claude Code offers some tools like --continue to resume conversations, auto-memory that saves notes to markdown files, and CLAUDE.md project documentation, these have limitations:
--continueor--resumerestores entire chat threads but consumes context window space and only works with one thread at a time- Auto-memory loads the first 200 lines of
MEMORY.mdbut lacks retrieval intelligence—it doesn't know which notes are relevant to current work - Project docs like
CLAUDE.mdwork for stable information but go stale quickly in fast-evolving projects
AgentWorkingMemory addresses these issues by accumulating knowledge across sessions, surfacing relevant context for current work, and improving over time without manual management.
How It Works
AWM runs entirely locally on your machine with no cloud dependencies. The system consists of:
- A SQLite database for storage
- Three local ML models (~124MB total, downloaded once and cached)
- A Node.js process
There's no server to run, no Docker container, and no background daemon. When you start Claude Code, it automatically spins up AWM through MCP (Model Context Protocol). When you close the session, it stops. Everything stays local—no cloud, no API keys, no data leaving your machine. For extra security, AWM supports bearer token authentication to lock down access to the memory API.
Setup and Usage
Installation requires two commands:
npm install -g agent-working-memory
awm setup --globalAfter restarting Claude Code, 14 memory tools appear automatically. The first session takes about 30 seconds while the ML models download (~124MB, cached after that). From that point on:
- The agent writes memories when it learns something important
- It recalls relevant memories when starting new work
- It checkpoints its state to recover after interruptions
The system was developed while rebuilding a 20-year-old codebase (~1.4 million lines) into a modern stack (~250K lines estimated), specifically for a membership management platform with 88 database tables and multi-sprint development using multiple AI agents in parallel.
📖 Read the full source: r/ClaudeAI
👀 See Also

MiniMax Music 2.5 AI Music Generator Released with Studio-Grade Audio Control
MiniMax Music 2.5 is an AI music generation model that creates studio-quality songs with 44.1kHz Hi-Fi output, 100+ instruments, and paragraph-level precision control using 14+ structural tags for directing song structure.

CLAUDE.md: Drop-in file reduces Claude output tokens by 63%
CLAUDE.md is a single file that cuts Claude output verbosity by approximately 63% without code changes. It targets sycophancy, verbosity, and formatting noise in Claude's responses.

Four ClawHub Skills for Real-Time Search Data in AI Agents
Four ClawHub skills provide structured search capabilities for AI agents: Google (web, news, images, maps), Amazon (product search across 12 marketplaces), Walmart (product search with delivery filters), and YouTube (video search with transcripts). Install via clawhub install commands with one API key.

tmux-IDE: A Terminal-Based Multi-Agent IDE for Claude
tmux-IDE is an open-source, declarative terminal IDE focused on agentic engineering that creates multi-agent layouts for Claude coding agents. It allows developers to boot into their IDE through SSH, give prompts to Claude, and close their machine while Claude continues working in tmux sessions.