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

MCP Server Enables Claude to Create and Run Custom Tools at Runtime
A developer built an MCP server where Claude can create, update, and run new tools without redeployment. The system uses five core tools and executes custom JavaScript/TypeScript code in a Deno sandbox with ~50ms cold start.

VibeIndex.ai: Searchable Hub for 90K+ AI Skills, MCPs, and Plugins with Security Scanning
A Korean AI researcher has built vibeindex.ai, a searchable hub that indexes over 90,000 AI skills, MCP servers, and plugins with hourly updates and security scanning using Cisco Skill Scanner across 17 threat categories.

Claude Code Plugin for Reddit Business Research
A Claude Code plugin automates Reddit research for businesses by searching relevant posts, analyzing threads, and generating structured markdown reports with findings and source links. No API keys required—install via GitHub and run with a single command.

GPT-5.5 Codex vs Claude Opus 4.7: Real-world coding agent benchmarks
A developer pitted GPT-5.5 Codex against Claude Opus 4.7 on two real tasks: a PR triage bot and a real-time code review UI. Claude shipped cleaner with zero errors; Codex was 18% cheaper but needed a patch pass.