From claude-spread
Receives shared project memory from LAN or WebSocket relay in Claude Code. Decrypts with passphrase, installs files to local memory directory with backups.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-spread:memory-receiveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are receiving project memory shared from another Claude Code instance.
You are receiving project memory shared from another Claude Code instance.
Run the receive.py script with the user's passphrase:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/receive.py "{{passphrase}}"
This will:
Check if the received payload is a JSON memory bundle or plain Markdown.
{"type": "memory_bundle", ...})Run the install script to save files to the local memory directory:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/memory-receive/scripts/install.py
Feed the received JSON payload via stdin. The script will:
~/.claude/projects/<project>/memory/.bak extension before overwritingAfter installation, tell the user which files were saved and that the memory is now active.
Display the received memory content to the user in full. Then offer to save it:
~/.claude/projects/<project>/memory/MEMORY.md (back up existing file first)If the user passes --relay --room <room_code>, use the relay server:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/receive.py --relay --room "{{room_code}}" "{{passphrase}}"
This will:
wss://relay.fireamulet.compip install websockets if not already installedAfter processing, tell the user:
~/.claude/projects/<project>/memory/npx claudepluginhub namyunwoo/claudespread --plugin claude-spreadShares Claude Code project memory files over LAN or WebSocket relay via passphrase-encrypted server in distilled Markdown or raw JSON modes.
Organizes, extracts, prunes, and verifies Claude Code persistent memory files to keep MEMORY.md under the 200-line truncation limit and topic files up to date with project state.
Explains how claude-mem captures observations, injects context, and where data is stored locally.