Skip to content
Tech News
← Back to articles

Show HN: Loopsy, a way for terminals and AI agents on different machines to talk

read original get Remote Terminal Communication Kit → more articles
Why This Matters

Loopsy introduces a seamless way for users to control their laptops and AI agents remotely via their phones without complex network configurations. By leveraging Cloudflare Workers, it enables secure, persistent terminal sessions across devices, enhancing productivity and accessibility for developers and tech enthusiasts alike. This innovation simplifies remote terminal management, making advanced computing more accessible and flexible for consumers and industry professionals.

Key Takeaways

Loopsy

Your terminal, in your pocket.

Control Claude Code, Cursor, Codex, or any shell on your laptop from your phone. Self-hosted on Cloudflare Workers.

macOS · Linux · Windows

→ loopsy.dev

Try it

# 1. Install on your laptop (any OS) npm install -g loopsy # 2. Deploy your own relay to Cloudflare Workers (~30s, free tier) npx @loopsy/deploy-relay # prompts for worker name + optional custom domain # outputs: https://<your-relay>.workers.dev # 3. Wire the daemon to it and start loopsy init loopsy relay configure https:// < your-relay > .workers.dev loopsy start # 4. Pair your phone loopsy mobile pair # scan the QR with your phone camera, enter the 4-digit code # 5. Open https://<your-relay>.workers.dev/app on your phone

That's the whole thing. Pick any agent, type or dictate, the laptop runs it.

How it works

┌─────────────┐ ┌──────────────────────┐ ┌─────────┐ │ Laptop │◄──WSS──►│ Cloudflare Worker │◄──WSS──►│ Phone │ │ loopsy │ │ Durable Object │ │ /app │ │ daemon │ │ (your account) │ │ │ └─────────────┘ └──────────────────────┘ └─────────┘

... continue reading