Cortex v1.2 adds LLM enrichment, Q&A with citations, and conflict resolution

Cortex is a local memory layer built for OpenClaw agents, designed to prevent context loss during compaction. The project recently reached 10 GitHub stars and has progressed from v1.0 to v1.2 within a week, with the developer using it daily with two agents.
New features in v1.2
- LLM-augmented enrichment enabled by default: When importing files, Cortex now uses Grok to enrich extracted facts with context like relationships, classifications, and provenance. The entire enrichment pipeline costs less than a dollar per month. You can disable it with
--no-enrichfor pure offline mode. - Question answering with citations: The new
cortex answercommand lets you ask questions and receive synthesized answers with citations back to original memories. It includes built-in prompt injection defense to prevent imported content from hijacking responses. - Deduplication and conflict resolution:
cortex cleanup --dedup-factsfinds near-duplicate facts and supersedes older ones.cortex conflicts --resolve llmdetects contradictions and auto-resolves them using an LLM, maintaining an audit trail of changes and reasons. - Unified configuration:
cortex config doctorshows exactly what's configured, where each value comes from (default, environment variable, flag, or config file), and what's missing. - Intent-based search pre-filtering: Search now classifies query intent (lookup, temporal, relational, etc.) and pre-filters results by fact type before scoring. For example, "when did I deploy v2?" prioritizes temporal facts, while "who works on XXX?" prioritizes relationship facts.
Upcoming development
The developer is currently dogfooding v1.3, which adds scoped views for multi-agent setups and an Obsidian connector that syncs vaults into Cortex as a searchable knowledge layer. The Obsidian connector is available in the repository but hasn't been audited yet.
Installation
Install via Homebrew: brew install hurttlocker/cortex/cortex
Or via ClawHub: clawhub install hurttlocker-cortex
📖 Read the full source: r/openclaw
👀 See Also
UI and Server for Anthropic's Natural Language Autoencoders on llama.cpp
A custom llama.cpp server and Mikupad UI for Anthropic's open-weight Natural Language Autoencoders, supporting activation extraction, explanation, reconstruction, and steering via explanation editing.

LM Studio plugins add web image analysis for vision-capable LLMs
A developer created plugins for LM Studio that enable vision-capable LLMs to fetch and analyze images from the web, with automatic image processing and tool chaining. The plugins work with models like Qwen 3.5 9b/27b and include updated Duck-Duck-Go and Visit Website functionality.

SendToAI VS Code Extension Solves Claude's 20-File Limit with Project Bundling
SendToAI is a free VS Code extension that bundles entire projects into a single clipboard paste, bypassing Claude's 20-file upload limit. It includes visual file selection, token counting, cost estimates, and project notes that persist across sessions.

Corey Haines' Marketing Skills Set for AI Agents
A set of 25 marketing skills for AI agents has been added to OpenClaw, covering conversion optimization, copywriting, analytics, and growth engineering. The conversion optimization skill is noted as particularly effective in multi-agent setups.