一键导入
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/