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

Manual-Driven Development: A Method to Prevent Claude Code's Confident Divergence
Manual-Driven Development (MDD) is a method that addresses confident divergence in Claude Code, where the AI produces wrong code that passes its own tests. In a production audit, MDD found 190 issues, wrote 876 new tests in under 8 hours, and eliminated rule violations.

OpenUtter: Query Google Meet Transcripts Live via OpenClaw
OpenUtter is a skill that joins Google Meet as a guest via a headless browser, captures live captions, and streams them to your OpenClaw event bus. You can query the live transcript mid-call via Telegram, WhatsApp, Slack, or Discord.

PocketBot: iOS app uses Claude to generate deterministic JavaScript automations from natural language
PocketBot is an iOS mobile automation app that uses Claude via AWS Bedrock to convert plain-language requests into self-contained JavaScript scripts. The LLM writes the code once, then the deterministic scripts run on schedule in a sandboxed runtime without AI involvement.

Ouroboros Adds PM Interview Mode for Claude Code to Bridge Spec Gap
Ouroboros now includes a PM mode that runs a guided interview before handing off to Claude Code, asking questions like what problem is being solved, who it's for, and what constraints matter. The output is a PRD/PM document with goal, user stories, constraints, success criteria, assumptions, and deferred items.