add-mnemon

Featured

Add persistent graph-based memory to NanoClaw agents using mnemon. Agents recall context before responding and remember insights after. Each group gets isolated memory with optional global shared store.

AI & Automation 572 stars 67 forks Updated 4 days ago Apache-2.0

Install

View on GitHub

Quality Score: 91/100

Stars 20%
92
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /add-mnemon Add [mnemon](https://github.com/mnemon-dev/mnemon) persistent memory to your NanoClaw installation. After running this skill, every agent session will have access to a per-group memory graph that persists across conversations. ## Architecture ``` Host Container ~/.mnemon/data/{group}/ ──rw──→ /home/node/.mnemon/data/default/ (private) ~/.mnemon/data/global/ ──ro──→ /home/node/.mnemon/data/global/ (shared) ``` Each group gets its own isolated mnemon store. An optional global store provides shared read-only knowledge across all groups. --- ## Phase 1: Pre-flight 1. Verify mnemon is installed on the host: ```bash mnemon --version ``` If not installed: - **macOS / Linux (Homebrew)**: `brew install mnemon-dev/tap/mnemon` - **Go install**: `go install github.com/mnemon-dev/mnemon@latest` 2. Verify the container image exists: ```bash docker image inspect nanoclaw-agent:latest >/dev/null 2>&1 && echo "OK" ``` 3. Fetch the latest mnemon version for the Dockerfile: ```bash curl -s https://api.github.com/repos/mnemon-dev/mnemon/releases/latest | grep -o '"tag_name": "v[^"]*"' | cut -d'"' -f4 | sed 's/^v//' ``` --- ## Phase 2: Apply Code Changes ### 2a. Install mnemon in the container image **File**: `container/Dockerfile` Add the following block **after** the `apt-get install` section and **before** the `npm install -g` line. Replace `0.1.1` with the version from Phase 1 step 3: ```dockerfi...

Details

Author
mnemon-dev
Repository
mnemon-dev/mnemon
Created
6 months ago
Last Updated
4 days ago
Language
Go
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category