OpenCortex: A Self-Improving Memory System for OpenClaw

OpenCortex is a self-improving memory system for OpenClaw that addresses the limitation of the flat MEMORY.md file by restructuring how the agent handles knowledge. Instead of one giant file, it routes information to where it actually belongs.
Key Features
The system organizes memory into structured files:
- Projects
- Contacts
- Workflows
- Preferences
- Runbooks
- Tools
- Infrastructure
Core Functionality
Nightly cron jobs distill the day's work into permanent knowledge. The distillation cron actively scans for:
- Uncaptured decisions
- Undocumented tools
- Missed preferences
- Orphaned sub-agent debriefs
- Instances where the agent deferred work to you that it could've handled itself
Weekly synthesis catches patterns across days and auto-creates runbooks from repeated procedures.
Technical Details
- Encrypted vault using AES-256 with system keyring preferred
- Opt-in metrics tracking with compound scoring to visualize agent improvement over time
- All sensitive features (voice profiling, infra collection, git push) off by default
- Everything is workspace-scoped with zero network calls
- Plain bash scripts you can read before running
- Benign on the ClawHub scanner
After a few weeks of running, users report the agent remembers preferences, knows the tools, and doesn't re-ask decisions, with knowledge genuinely compounding over time.
📖 Read the full source: r/openclaw
👀 See Also

Blackwell LLM Toolkit: NVFP4 Configs, Wheels, and Benchmarks for TensorRT-LLM on RTX Pro 6000
A community repo provides TensorRT-LLM configs, prebuilt LMCache wheels with sm_120 support, and benchmarks for Blackwell GPUs. Nemotron-3-Nano-Omni V3 hits 270 tok/s at 8k context on a single RTX Pro 6000.

Managing AI Context with a SQLite Knowledge Store and MCP Tools
One developer built RunawayContext, an MIT-licensed system that stores project lessons in SQLite with FTS5 and optional sqlite-vec, keeping per-session context under 3K tokens via MCP query tools and hard-coded caps.

Skillware adds synthetic data generator with entropy scoring for local model fine-tuning
Skillware has released a new synthetic data generator skill that uses zlib compression-ratio heuristics to score output diversity, helping prevent model collapse. The tool works out-of-the-box with Ollama, supports Gemini/Anthropic for high-reasoning batches, and outputs JSON batches for .jsonl fine-tuning pipelines.

Claude Code Logs Every Session to Disk — Here's How to Index and Recall Them
Claude Code writes every session turn to ~/.claude/projects/ as JSONL. One user indexed 1026 sessions (57MB, 76K turns) into SQLite+FTS5 with an MCP server for search and thread recall across sessions.