원클릭으로
memory-receive
Receive shared project memory from LAN or relay
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Receive shared project memory from LAN or relay
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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/