Signet: An Open-Source Local-First Memory Substrate for AI Agents

What Signet Solves
Most current AI agent memory systems operate like RAG (Retrieval-Augmented Generation): user message → search memory → retrieve results → answer. This works for explicit queries but breaks when relevant context is implicit.
Examples from the source:
- "Set up the database for the new service" should surface that PostgreSQL was already chosen
- "My transcript was denied, no record under my name" should surface that the user changed their name
- "What time should I set my alarm for my 8:30 meeting?" should surface commute time
The problem isn't storage - it's that these systems wait for the current message to contain enough query signal to retrieve the right past context.
How Signet Works
Signet handles memory outside the agent loop with this architecture:
- Preserves raw transcripts
- Distills sessions into structured memory
- Links entities, constraints, and relations into a graph
- Uses graph traversal + hybrid retrieval to build a candidate set
- Reranks candidates for prompt-time relevance
- Injects context before the next prompt starts
The agent isn't deciding what to save or when to search - it starts with context already available. This moves from query-dependent retrieval toward ambient recall.
Technical Details
Signet is:
- Local-first (SQLite + markdown)
- Inspectable and repairable
- Works across Claude Code, Codex, OpenCode, and OpenClaw
On LoCoMo, it currently achieves 87.5% answer accuracy with 100% Hit@10 retrieval on an 8-question sample. The developer notes this is a small sample but shows the approach is promising.
📖 Read the full source: r/openclaw
👀 See Also

Offline-web-search: A Local Google Search Alternative for AI Agents
A developer built offline-web-search to address poor offline search capabilities in AI agents, creating a drop-in replacement that mimics Claude's web tools with BM25 ranking, SQLite FTS5 indexing, and support for ZIM archives and custom crawlers.

Meta Ads MCP OAuth Works But Most Ad Accounts Not Enabled Yet
Meta Ads MCP OAuth flow works and loads 29 tools, but ads_get_ad_accounts returns is_ads_mcp_enabled: false with a message that the feature is gradually rolling out.

Free macOS Menu Bar App Monitors Claude Usage in Real-Time
A developer built a free macOS menu bar app to monitor Claude usage entirely using Claude Code with Opus. The app shows 5-hour and 7-day session usage bars, context window fill percentage, and sends notifications when approaching limits.

boxBot: An Open-Source Smart Speaker Powered by Claude and Hailo AI
A developer built a smart speaker named boxBot using Claude for agent-driven hardware control, Raspberry Pi, Hailo AI accelerator, and custom SDK—open-sourced on GitHub.