en un clic
memory-receive
Receive shared project memory from LAN or relay
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Receive shared project memory from LAN or relay
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Browse and receive Claude Code sessions from another user
Share Claude Code sessions for another user to browse and resume
Distill the current session and share it securely over the local network or via relay
Share project auto memory over LAN or relay
Receive a shared session distillation from the local network or via relay
| name | memory-receive |
| description | Receive shared project memory from LAN or relay |
| user-invocable | true |
| arguments | [{"name":"passphrase","description":"Shared passphrase for decryption (required)","required":true},{"name":"--relay","description":"Use WebSocket relay server for remote receiving","required":false},{"name":"--room","description":"Room code to join (required with --relay)","required":false}] |
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/