memora: Version-Controlled, Typed Memory for AI Agents – Git for AI Beliefs

memora is a CLI tool that version-controls AI agent memory—typed, provenance-tracked, branchable, mergeable. Think git for what the AI believes about your codebase, not file changes. The entire project is ~5k lines of Rust across two crates, producing a single static binary with zero external dependencies (SQLite bundled via rusqlite). Runs on all three major platforms with CI.
Crate Structure
- memora-core – library with no CLI deps. Types, SQLite store, snapshot engine, 3-way merge, session recording, export adapters.
- memora-cli – thin clap-based CLI layer on top.
Technical Highlights
Clocktrait for deterministic tests – no flaky timestamps.- Content-addressed IDs via SHA-256 of canonical form strings.
- Three-way merge with BFS merge-base detection across the full parent DAG.
node_versionstable that snapshots full node state per commit – enabling diff, rollback, and reversible GC.
Design Decisions & Open Questions
The author is seeking feedback on several areas:
- Importance scoring formula for GC and export ranking.
- Whether the
MemorySourceenum should be open (currently has anUnknown(String)variant). - Remote sync model – currently filesystem-only; the
copy_commits_betweenboundary is where network transport would plug in.
Repository: github.com/harshtripathi272/memora – MIT licensed.
📖 Read the full source: r/openclaw
👀 See Also

Conduid: Trust Infrastructure Layer for MCP Servers Built with Claude
Conduid indexes over 25,000 MCP servers across GitHub, npm, PyPI, and major directories, scoring each 0-100 based on GitHub activity, security posture, documentation quality, and maintenance signals. The entire codebase was written with Claude by a solo founder.

Colony: A Local-First Coordination Layer That Cuts Multi-Agent Handoff Tokens from 30K to 400
Colony is a local-first coordination substrate that reduces multi-agent handoff costs from ~30,000 tokens to ~400 by replacing context replay with compact observations stored in SQLite.

AIBrain adds persistent memory and self-improvement to Claude Code
AIBrain is a tool that gives Claude Code persistent memory between sessions with semantic search retrieval and self-improvement cycles. It includes 53 workflows, 44 skills, 9 MCP servers, and supports multi-agent mesh networking via Tailscale.

certctl: Self-hosted certificate lifecycle platform with 78 API endpoints for AI agent automation
certctl is a self-hosted certificate lifecycle platform built with Go and TypeScript that exposes 78 REST API endpoints for certificate management. The platform is issuer-agnostic and target-agnostic, with an MCP server planned to expose all functionality as native MCP tools.