Securely share Claude Code session distillations and project memory over LAN or relay
npx claudepluginhub namyunwoo/claudespreadSecurely share Claude Code session distillations and project memory over LAN or relay
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
If git made code shareable, claude-spread makes the development process itself shareable, agent to agent.
Securely share Claude Code session distillations between machines — over LAN or the internet.
Claude Spread adds skills to Claude Code for sharing session context and project memory:
/claude-spread:distill-share — Generates a structured summary (distillation) of the current session and serves it to receivers, encrypted with a shared passphrase./claude-spread:distill-receive — Discovers and receives a distillation from a sender, decrypts it, and presents it so you can continue where the previous session left off./claude-spread:memory-share — Shares your project's auto memory (~/.claude/projects/<project>/memory/) over the network. Supports distilled (default) and raw (--raw) modes./claude-spread:memory-receive — Receives shared project memory and installs it into your local auto memory directory./claude-spread:sessions-share — Shares your Claude Code /resume sessions so another user can browse and pick one to continue working on./claude-spread:sessions-receive — Browses available sessions from a sender, lets you pick one, installs it locally, and you can /resume it immediately.All data is encrypted end-to-end with AES-256-GCM. The passphrase never leaves your machines.
Uses mDNS (Bonjour) for zero-config discovery on the local network.
# Sender
/claude-spread:distill-share mypassphrase
# Receiver (same network)
/claude-spread:distill-receive mypassphrase
Firewall note: The sender opens a random TCP port for the receiver to connect. If your firewall blocks incoming connections, the receiver will discover the service via mDNS but fail to connect (timeout). Make sure the sender's firewall allows inbound TCP on the assigned port:
# Linux (ufw) sudo ufw allow <port>/tcp # Linux (iptables) sudo iptables -A INPUT -p tcp --dport <port> -j ACCEPT # macOS # macOS will show a "Allow incoming connections?" dialog automatically.Alternatively, use Relay Mode to bypass firewall restrictions entirely.
Uses a WebSocket relay server for sharing across different networks. The relay is a dumb pipe — it cannot decrypt your data.
# Sender
/claude-spread:distill-share --relay mypassphrase
# → displays a 6-character room code
# Receiver (anywhere)
/claude-spread:distill-receive --relay --room <room_code> mypassphrase
Share your project's accumulated auto memory (patterns, conventions, debugging insights) with another machine or team member.
# Share memory (Claude distills and organizes it first)
/claude-spread:memory-share mypassphrase
# Share memory raw (all .md files as-is)
/claude-spread:memory-share --raw mypassphrase
# Receive memory
/claude-spread:memory-receive mypassphrase
Relay mode works the same way — add --relay to share across networks.
Share your Claude Code /resume sessions — the receiver can browse your session list and pick one to continue working on in their own environment. Unlike distillation (which shares a summary), session sharing transfers the full conversation history so the receiver can /resume it exactly as if it were their own session.
# LAN mode (same network)
/claude-spread:sessions-share mypassphrase
# Relay mode (anywhere on the internet)
/claude-spread:sessions-share --relay mypassphrase
The sender flow:
1, 5, 7)To keep the server open for multiple receivers, add --keep-open <minutes>:
/claude-spread:sessions-share --keep-open 10 mypassphrase
# LAN mode
/claude-spread:sessions-receive mypassphrase
# Relay mode (use the room code from the sender)
/claude-spread:sessions-receive --relay --room <room_code> mypassphrase
The receiver flow:
.jsonl session file is installed into your local Claude Code sessions directory/resume in Claude Code to continue the session immediatelyIn Claude Code, run:
# 1. Add the marketplace
/plugin marketplace add NAMYUNWOO/claudeSpread
# 2. Install the plugin
/plugin install claude-spread@ai-spread