Relay lets Claude Code sessions message each other without alt-tabbing

A developer built a plugin called Relay that lets parallel Claude Code sessions message each other, eliminating the alt-tab/copy-paste dance when switching between backend and frontend contexts.
How it works
Relay piggybacks on Claude Code's channels capability (MCP server push messages between turns). Each session runs a tiny MCP server; a single hub daemon routes messages over a Unix socket. When you ask Claude in one session to query another, the message lands as a channel notification in the target session, which replies naturally on its next turn.
Key details
- Usage: In a frontend session, just say:
"ask the backend session what the user object looks like". The backend session sees the question between turns, answers it, and the reply appears as a notification in the frontend session. - Broadcasts: Works for asking all sessions what they're working on — replies trickle in one at a time.
- Architecture: First session started spawns the hub daemon. It self-exits ~5 minutes after the last session disconnects. Same machine only, no auth, nothing leaves your box.
- Open source: MIT license, day-one release so rough edges are expected. Repo with install steps at https://github.com/innestic/claude-relay.
Who it's for
Developers running multiple Claude Code sessions simultaneously (e.g., one per microservice or repo) who are tired of context-switching.
📖 Read the full source: r/ClaudeAI
👀 See Also

Building a voice-controlled multi-agent system on top of Claude Code
A developer built a wake-word-activated voice loop for Claude Code that spawns sub-agents, parallelizes work, and auto-QAs results. Full technical breakdown including speaker verification and PID watcher.

Meeting Summarization on a 6GB GPU: qwen3.5:0.8B Works at 57s, Granite 4 350M Hallucinates
VoiceFlow v1.6.0 adds local meeting recording and summarization. Benchmarking sub-1B models on a 6GB RTX 3060: qwen3.5:0.8B produces structured summaries in 57s at 2.2GB VRAM, while Granite 4 350M hallucinates badly.

Open-Source Claude IDE Bridge Connects Dispatch, Desktop App, and Claude Code
The claude-ide-bridge is an MIT-licensed open-source tool that connects Claude Code to your IDE, providing access to LSP, debugger, terminals, git, and GitHub through 124 tools. It enables a workflow where tasks sent via Dispatch from a phone are handled by the Claude desktop app, which uses Claude Code to write code and run tests while interacting with the IDE.

Open-source memory system for LLM agents achieves high benchmark scores
A persistent memory system for Claude Code and OpenClaw provides LLM agents with context continuity across sessions, achieving 90.8% on LoCoMo and 89.1% on LongMemEval benchmarks. The adapter-based architecture works with any agent framework.