Signet: Open-Source Memory Layer for AI Coding Agents Hits 80% F1 on LoCoMo

Signet is an open-source memory system designed for AI coding agents like Claude Code, OpenCode, OpenClaw, and Codex. It addresses memory management by separating memory extraction from the agent's conversational flow.
Performance and Approach
The system recently achieved 80% F1 on the LoCoMo benchmark, which evaluates long-term conversational memory. For comparison, standard RAG scores around 41% on this benchmark, GPT-4 with full context scores 32%, and the human ceiling is 87.9%.
Unlike approaches that give agents a "remember" tool, Signet flips the architecture:
- Memories are extracted after each session by a separate LLM pipeline—no tool calls during conversation
- Relevant context is injected before each prompt—the agent doesn't search for what it needs, it just has it
The approach is analogous to human memory where information surfaces automatically rather than requiring explicit queries.
Technical Implementation
Everything runs locally using SQLite on your machine with no cloud dependencies, working offline. The same agent memory persists across different coding tools. Setup requires one install command and runs in a few minutes. The project is Apache 2.0 licensed.
Future Development
The team is working on a per-user predictive memory model that learns your patterns and anticipates what context you'll need before you ask. This model will be trained locally with weights staying on your machine.
📖 Read the full source: r/openclaw
👀 See Also

ClawPort: Open Source Orchestration for AI Agent Workflows with Self-Healing Cron
ClawPort is an open source orchestration layer for AI agent workflows that auto-configures cron pipelines, self-heals on failures, and lets you test agents directly before they run on schedule.

Developer builds AI framework with 17 biological principles using Claude Code
A developer created an AI framework called Cognitive Sparks by implementing 17 biological principles like threshold firing and Hebbian plasticity, based on the 1999 book 'Sparks of Genius.' The entire project—22 design docs and 3,300 lines of code—was built in one day using Claude Code, with no human-written code.

Rowboat: Open-Source AI Coworker with Knowledge Graph Memory
Rowboat is an open-source app that transforms your work into a living knowledge graph, storing data locally as Markdown, and offering AI-driven local assistance.

Dual DGX Sparks vs Mac Studio M3 Ultra: Practical Comparison for Running Qwen3.5 397B Locally
A developer compared running Qwen3.5 397B locally on a $10K Mac Studio M3 Ultra 512GB and a $10K dual DGX Spark setup. The Mac Studio achieved 30-40 tok/s with 800 GB/s bandwidth but slow prefill, while the Sparks delivered 27-28 tok/s with faster compute but complex setup.