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

Open-source Agent OS: Rust-based OS for AI agents with WASM sandboxing and Hands feature
An open-source operating system for AI agents has been released with 137k lines of Rust code under MIT license. The system runs agents in WASM sandboxes with 16 security layers and introduces 'Hands' for scheduled, autonomous agent operation.

Modulus: Cross-repository knowledge orchestration for AI coding agents
Modulus is a desktop app that runs multiple AI coding agents with shared project memory across repositories. It solves cross-repo context problems by letting agents understand dependencies between different codebases without manual explanation.

Task-observer: A Meta-Skill That Automates Skill Improvement for AI Coding Agents
Task-observer is a meta-skill that self-improves all your AI agent's skills, including itself. It logged 600 skill improvements across 40 skills in 3 months and automates skill creation from work gaps.

Qhatu: Platform Turns GitHub Repos into Pay-Per-Use Micro SaaS with Claude
Qhatu is a platform that takes a GitHub repository and deploys it as a pay-per-use micro SaaS with a generated frontend and integrated payment processing. The system uses Anthropic APIs to analyze code, generate Dockerfiles, and create storefront UIs.