Releases: mnemon-dev/mnemon
Releases · mnemon-dev/mnemon
v0.1.5
v0.1.5 focuses on stable CLI, storage, and entity-graph behavior.
Note: harness modules, harness documentation, and harness evaluation assets in this repository remain experimental and are not part of this release's public stability guarantee.
Changelog
- 25cda94 chore(release): prepare v0.1.5 notes
- d70697a fix: raise cosine dedup threshold to prevent same-domain false UPDATE
- da43bfa fix: remove 'not' from negation words, gate conflict check at similarity>=0.7
- 439ca22 fix: sort diff matches by similarity
- 8dc68a9 fix: use Jaccard similarity in dedup to prevent same-domain false UPDATE
v0.1.4
v0.1.4 focuses on stable CLI, storage, and entity-graph behavior.
Note: harness modules, harness documentation, and harness evaluation assets in this repository remain experimental and are not part of the v0.1.4 public stability guarantee.
Added
remember --entity-modeto choosemerge,provided, orautoentity handling.
Fixed
- Store name validation for resolved store paths.
- Query limit validation for recall and related command paths.
- Sidecar migration error reporting.
- Setup integration cleanup reliability.
Other
- Deployment environment configuration updates.
v0.1.3
Changelog
- e57a122 Add MNEMON_EMBED_DIMENSIONS for Matryoshka dimension truncation Support Matryoshka Representation Learning by passing the dimensions parameter to Ollama's /api/embed endpoint. When MNEMON_EMBED_DIMENSIONS is set (e.g., 256), Ollama truncates and re-normalizes the embedding vector, giving faster similarity search with minimal quality loss on MRL-trained models like nomic-embed-text. Backward compatible: when unset, behavior is identical to before.
- 7d6e33c Apply gofmt -s across codebase for Go Report Card A+
- f36a883 NanoClaw integration: read-only DB, skill assets, and docs
- 91e44dc NanoClaw skill: add lifecycle hook injection (prime/remind/nudge/compact)
- 39bfb5d feat: support MNEMON_DATA_DIR env var for data directory override
v0.1.2
What's New
- OpenClaw skill template: Added standard
installmetadata (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 --yesv0.1.1
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
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 setupauto-detects Claude Code / OpenClaw and installs skill + hooks - Optional embeddings: local Ollama
nomic-embed-textfor 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 buildsQuick 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 statusDownloads
| 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.