Skip to content

Releases: mnemon-dev/mnemon

v0.1.2

21 Feb 21:11

Choose a tag to compare

What's New

  • OpenClaw skill template: Added standard install metadata (Homebrew, go install) to SKILL.md frontmatter — OpenClaw can now auto-detect mnemon and offer installation
  • Install & Configure section: One-command setup (mnemon setup --target openclaw --yes), plugin config reference, and uninstall instructions baked into the skill
  • README update: OpenClaw section now reflects fully automated integration

One-command OpenClaw setup

brew install mnemon-dev/tap/mnemon   # or: go install github.com/mnemon-dev/mnemon@latest
mnemon setup --target openclaw --yes

v0.1.1

21 Feb 20:39

Choose a tag to compare

Changelog

  • 73aa3f1 Emphasize LLM-supervised positioning in README
  • f005b75 Refine OpenClaw plugin: version patching, config schema, always-on skill load
  • 69dc95c Release v0.1.1: OpenClaw full integration
  • a7a6ae1 feat(setup): openclaw optional hooks selection (remind/nudge/compact)
  • 3c615ff feat(setup): openclaw scope defaults to global (~/.openclaw/)
  • d9a74f4 fix(openclaw/plugin): correct plugin hook API usage
  • 0018ae0 fix(openclaw/plugin): remove direct recall execution from plugin

v0.1.0

21 Feb 17:58

Choose a tag to compare

Mnemon v0.1.0 — Initial Release

Persistent memory for LLM agents. Single binary, zero dependencies, works with Claude Code and OpenClaw.

Highlights

  • Graph-based memory: 4 edge types (temporal, entity, semantic, causal) inspired by the MAGMA architecture
  • Intent-aware recall: beam search + RRF reranking adapts to WHY/WHEN/ENTITY/GENERAL queries
  • LLM-supervised: your host LLM decides what to remember, link, and forget — the binary handles deterministic computation
  • Cross-session persistence: SQLite-backed storage with importance decay and auto-pruning
  • One-command setup: mnemon setup auto-detects Claude Code / OpenClaw and installs skill + hooks
  • Optional embeddings: local Ollama nomic-embed-text for vector similarity (works without it too)

Install

# Homebrew (macOS / Linux)
brew tap mnemon-dev/tap && brew install mnemon

# Go install
go install github.com/mnemon-dev/mnemon@v0.1.0

# Binary download
# See assets below for darwin/linux/windows builds

Quick Start

mnemon setup          # detect Claude Code / OpenClaw, install skill + hooks
mnemon remember "user prefers dark mode" --cat preference --imp 3
mnemon recall "UI preferences" --limit 5
mnemon status

Downloads

Platform Architecture File
macOS Apple Silicon (arm64) mnemon_0.1.0_darwin_arm64.tar.gz
macOS Intel (amd64) mnemon_0.1.0_darwin_amd64.tar.gz
Linux arm64 mnemon_0.1.0_linux_arm64.tar.gz
Linux amd64 mnemon_0.1.0_linux_amd64.tar.gz
Windows amd64 mnemon_0.1.0_windows_amd64.zip

Full changelog below.