원클릭으로
distill-receive
Receive a shared session distillation from the local network or via relay
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Receive a shared session distillation from the local network or via 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 shared project memory from LAN or relay
| name | distill-receive |
| description | Receive a shared session distillation from the local network or via 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 (optional)","required":false},{"name":"--room","description":"Room code to join (required with --relay)","required":false}] |
You are receiving a session distillation from another Claude Code instance on the local network.
Run the receive.py script with the user's passphrase:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/receive.py "{{passphrase}}"
This will:
Display the received distillation content to the user in full. This is a handoff document from another session.
If the user passes --relay --room <room_code>, use the relay server instead of LAN/mDNS.
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/receive.py --relay --room "{{room_code}}" "{{passphrase}}"
This will:
wss://relay.fireamulet.compip install websockets if not already installedAfter showing the distillation, ask the user:
"Distillation data received. What would you like to continue working on?"
Use the distillation context (especially Open TODOs and Context for Next Session) to understand what work remains and be ready to continue where the previous session left off.