Meshmorize

Prompts

๐Ÿง  Multi-layer memory system: fresh layer, mesh graph, auto-log, cross-layer search, compliance check

duplicate of @mozz0/josh-learns (3.0.23)

Install

openclaw skills install meshmorize

MeshMorize ๐Ÿง 

Multi-layer memory system for LLM agents. Fresh daily layer, mesh graph indexing, auto-logging, cross-layer search, and full compliance checks.

Built for OpenClaw. Works with any agent that can run Python.

Layers

LayerFilePurpose
Freshmemory/fresh/today.mdDaily notes, 5-day rotation
Meshmemory/mesh.jsonGraph nodes + search index
Logscripts/auto_logAuto-log every interaction
Searchscripts/memory_searchCross-layer search (fresh โ†’ daily โ†’ mesh โ†’ raw โ†’ long-term)
Checkscripts/memory_check10-point compliance check (memcheck)

Quick start

mem-bridge init          # Rotate fresh layer, create today.md
auto_log "msg" "reply"   # Log an interaction
memory_search "query"    # Search all memory layers
memcheck                 # Full 10-point compliance check

Tools

ToolSource
mem-bridgememory/bridge.py โ€” fresh-layer rotation + checkpoint management
auto_logscripts/auto_log.py โ€” interaction logger
memory_searchscripts/memory_search.py โ€” multi-layer search across all memory stores
memcheckscripts/memory_check.py โ€” 10-point compliance check runner

Install

Put bridge.py in memory/ and scripts in scripts/ of your agent workspace. Symlink or add to PATH:

ln -s $(pwd)/scripts/* ~/.local/bin/
ln -s $(pwd)/memory/bridge.py ~/.local/bin/mem-bridge

On session start, run:

mem-bridge init

Source

https://github.com/mozz0/MeshMorize


Made by mozz0 ยท Released under MIT