Vibe Remote: Mobile Bridge for Claude Code Access from Anywhere

Vibe Remote is a mobile bridge tool that lets you access your Claude Code development environment from your phone while away from your desk. The creator built it to enable "Vibe Coding" sessions from locations like bed, park benches, or while walking through a mall.
Key Features
The tool provides access to your entire local Claude Code setup from your mobile device. According to the source:
- Maintains your personal configurations, Git history, and file tree
- No Tailscale or complex VPN/proxy setup required
- Access localhost web projects directly from your phone while out
- Carry your entire local dev environment in your pocket
Setup Process
The workflow consists of exactly 4 steps:
- Keep your local setup: Ensure Claude Code is already configured on your machine
- Get the command: Visit https://vibe-remote.com/ and copy the command
- Get the app: Scan the QR code on the site to install the app
- Connect: Scan the QR code in your terminal using the app
Pricing
The app is completely free for standard use. A Pro tier exists for power users who need to manage dozens of sessions at once, but most users will be fine with the free version forever.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code documentation includes excessive React components inflating token counts
Analysis of Claude Code's LLM documentation reveals that MDX files contain massive inlined React components, with context-window.md using 18,501 tokens but only 551 tokens of actual documentation content.

Hipocampus: A Persistent Memory System for AI Agents Using Compaction Trees
Hipocampus addresses the problem of AI agents forgetting context between sessions by implementing a compaction tree that compresses conversation history through five levels: raw → daily → weekly → monthly → root, with a topic index called ROOT.md.

Qwen 3.5 35B Running on 8GB VRAM with llama.cpp Configuration
A developer shares their llama.cpp configuration for running Qwen 3.5 35B (Q4_K_M GGUF) on an RTX 4060m with 8GB VRAM, achieving 700 t/s prompt processing and 42 t/s generation, and discusses using Cline in VSCode with kat-coder-pro and qwen3.5 modes.

Agent-factory: A Claude Code Plugin for Persistent AI Sub-Agent Teams
Agent-factory is a Claude Code plugin that creates persistent sub-agent teams with distinct personalities and file-based memory. It scaffolds 2-5 agents per project through a conversational interview process, with each agent having specific roles like code review, tech debt tracking, or strategy.