Give your AI agent persistent memory. One command. No account. Works offline.
Awareness Local is a local-first memory system for AI coding agents. It runs a lightweight daemon on your machine that stores memories as Markdown files, searches with hybrid FTS5 + embedding, and connects to any IDE via the MCP protocol.
npx @awareness-sdk/setupThat's it. Your AI agent now remembers everything across sessions.
Before: Every session starts from scratch. You re-explain the codebase, re-justify decisions, watch the agent redo work.
After: Your agent says "I remember you were migrating from MySQL to PostgreSQL. Last session you completed the schema changes and had 2 TODOs remaining..."
Session 1 Session 2
âââââââââââââââââââââââââââ âââââââââââââââââââââââââââ
â Agent: "What database?" â â Agent: "I remember we â
â You: "PostgreSQL..." â â chose PostgreSQL for â
â Agent: "What framework?"â â â JSON support. You had â
â You: "FastAPI..." â â 2 TODOs left. Let me â
â (repeat every session) â â continue from there." â
âââââââââââââââââââââââââââ âââââââââââââââââââââââââââ
| IDE | Auto-detected | Plugin |
|---|---|---|
| Claude Code | â | awareness-memory |
| Cursor | â | via MCP |
| Windsurf | â | via MCP |
| OpenClaw | â | @awareness-sdk/openclaw-memory |
| Cline | â | via MCP |
| GitHub Copilot | â | via MCP |
| Codex CLI | â | via MCP |
| Kiro | â | via MCP |
| Trae | â | via MCP |
| Zed | â | via MCP |
| JetBrains (Junie) | â | via MCP |
| Augment | â | via MCP |
| AntiGravity (Jules) | â | via MCP |
Your IDE / AI Agent
â
â MCP Protocol (localhost:37800)
âŧ
ââââââââââââââââââââââââââââââââââââââ
â Awareness Local Daemon â
â â
â Markdown files â Human-readable, git-friendly
â SQLite FTS5 â Fast keyword search
â Local embedding â Semantic search (optional: npm i @huggingface/transformers)
â Knowledge cards â Auto-extracted decisions, solutions, risks
â Web Dashboard â http://localhost:37800/
â â
â Cloud sync (optional) â
â â One-click device-auth â
â â Bidirectional sync â
â â Semantic vector search â
â â Team collaboration â
ââââââââââââââââââââââââââââââââââââââ
All memories stored as Markdown files in .awareness/ â human-readable, editable, git-friendly:
.awareness/
âââ memories/
â âââ 2026-03-22_decided-to-use-postgresql.md
â âââ 2026-03-22_fixed-auth-bug.md
â âââ ...
âââ knowledge/
â âââ decisions/postgresql-over-mysql.md
â âââ solutions/auth-token-refresh.md
âââ tasks/
â âââ open/implement-rate-limiting.md
âââ index.db (search index, auto-rebuilt)
| Tool | What it does |
|---|---|
awareness_init |
Load session context â recent knowledge, tasks, rules |
awareness_recall |
Search memories â progressive disclosure (summary â full) |
awareness_record |
Save decisions, code changes, insights â with knowledge extraction |
awareness_lookup |
Fast lookup â tasks, knowledge cards, session history, risks |
awareness_get_agent_prompt |
Get agent-specific prompts for multi-agent setups |
Instead of dumping everything into context, Awareness uses a two-phase recall:
Phase 1: awareness_recall(query, detail="summary")
â Lightweight index (~80 tokens each): title + summary + score
â Agent reviews and picks what's relevant
Phase 2: awareness_recall(detail="full", ids=[...])
â Complete content for selected items only
â No truncation, no wasted tokens
Visit http://localhost:37800/ to browse memories, knowledge cards, tasks, and manage cloud sync.
Connect to Awareness Cloud for:
- Semantic vector search (100+ languages)
- Cross-device real-time sync
- Team collaboration
- Memory marketplace
npx @awareness-sdk/setup --cloud
# Or click "Connect to Cloud" in the dashboardAwareness Local is part of the Awareness ecosystem:
| Package | For | Install |
|---|---|---|
| Awareness Local | Local daemon + MCP server | npx @awareness-sdk/setup |
| Python SDK | wrap_openai() / wrap_anthropic() interceptors |
pip install awareness-memory-cloud |
| TypeScript SDK | wrapOpenAI() / wrapAnthropic() interceptors |
npm i @awareness-sdk/memory-cloud |
| OpenClaw Plugin | Auto-recall + auto-capture | openclaw plugins install @awareness-sdk/openclaw-memory |
| Claude Code Plugin | Skills + hooks | /plugin marketplace add edwin-hao-ai/Awareness-SDK â /plugin install awareness-memory@awareness |
| Setup CLI | One-command setup for 13+ IDEs | npx @awareness-sdk/setup |
Full SDK docs: awareness.market/docs
- Node.js 18+
- Any MCP-compatible IDE
No Python, no Docker, no cloud account needed.
Apache 2.0
