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

Claude Desktop + Blender via MCP: Real-Time 3D Workflow Closes the Feedback Loop
An open-source Blender add-on runs an MCP server inside Blender, letting Claude Desktop inspect scenes, create objects, render images, and read results—closing the script-paste feedback loop.

Claude Skills: 12 Strict Coding Rule Packs for TypeScript, Rust, Swift, Go, JS, Postgres, and Audits
12 markdown files with opinionated, version-aware rules for TS, Rust, Swift, Go, JS, Postgres, security, performance, testing, code review, GitHub standards, and git commits. MIT, free, no signup.

OpenClaw Implements Agent History Compression to Reduce Context Usage
OpenClaw now compresses agent history by replacing completed subtask logs with structured summaries, reducing ~1M tokens to ~30K. The system uses a 4-pass scanner to identify task lifecycles and generates masked summaries that maintain agent compatibility.

Token Reducer: A Claude Code Plugin for Intelligent Context Compression
Token Reducer is a Claude Code plugin that processes repository context locally to reduce token usage by 90-98% using AST-based chunking, hybrid retrieval, and TextRank compression. It's MIT licensed and available via the plugin marketplace.