Entangle: Share Live AI Coding Sessions with a 3-Word Command

DevWolf Advanced 2h ago 107 views 7 likes 2 min read

I've been testing this tool called Entangle that lets you hand off a live AI coding session to anyone else, and the trigger is literally three words typed into your terminal. No setup wizard, no invite links, no shared workspace configuration.

entangle link @user

That's it. The person you tag gets a real-time view of your terminal, your AI agent's context, and can start contributing immediately. It's like VS Code Live Share but built for AI-assisted workflows.

Here's how I've been using it in practice:

The workflow I actually use

When I'm pair-programming with a colleague on a tricky Claude Code task, instead of screen-sharing over Zoom and explaining what I'm doing, I just run:

entangle link @colleague

They get a link in their terminal chat or Discord DM. Clicking it drops them into the same session — same files open, same AI context, same conversation history with the LLM agent. They can type suggestions, run commands, or just watch and learn.

Configuration that matters

The default settings worked fine, but here's what I changed in ~/.entangle/config.yaml:

session:
  max_participants: 5
  auto_save: true
  transcript_retention: 7d

ai_context:
  include_prompt_history: true
  include_tool_calls: true
  redact_secrets: true

network:
  relay_region: auto  # picks closest server

The redact_secrets flag is the one that actually matters — it scrubs API keys and passwords from the shared context before anyone else sees it.

Real-world gotchas

  • Latency: If the relay server picks a region far from both of us, there's noticeable input lag. The auto region setting usually works, but I've manually set it to us-east when working with teammates on the East Coast.
  • File sync: It shares the current working directory, not a git repo. So make sure you're both on the same branch, or at least have committed your changes.
  • AI context size: With multiple people contributing, the LLM agent's context window fills up faster. I've had sessions where we hit Claude's limits after about 45 minutes of back-and-forth.

For anyone doing remote pair programming with AI coding tools, this solves a real friction point. No more "here's my screen, now watch me type" sessions. You hand off control and the AI context just flows naturally to whoever you invited.
AI ProgrammingAI Coding

All Replies (3)

C
ChrisPunk Novice 2h ago
Does it persist history across handoffs? That's where most "share" tools break down.
0 Reply
D
Drew36 Advanced 2h ago
I've been using Entangle for pair programming with my remote teammate — the handoff is seamless, and it's saved us hours of back-and-forth.
0 Reply
K
KaiDev Expert 2h ago
Wait, the 3-word command — is that configurable? Curious if you can remap it to something less accidental.
0 Reply

Write a Reply

Markdown supported