C.W.K.
Stream
Lesson 01 of 06 · published

Claude Remote 가 뭘 해결

~14 min · remote, session-handoff, portable-session

Level 0🌱 입문자
0 XP0/70 lessons0/11 achievements
0/120 XP to next level120 XP to go0% complete

세션이 단위, 머신 X

Claude Remote (Claude Code Remote Control 이라고도, 2026년 2월 launch) 가 AI 코딩 세션을 portable, transferable 아티팩트로 다뤄. 노트북에서 시작, GPU cloud VM 으로 heavy 작업 hand off, 태블릿에서 resume — 대화 history, 파일 reference, 도구 state 다 그대로. 받는 쪽에서 sub-100ms resume latency.

제거하는 문제: "약한 머신에서 로컬 run" vs "빵빵한 서버에 SSH 하고 로컬 context 잃기" 의 가짜 선택. Remote 가 둘 다 유지 — 세션이 이동, context 도 같이. State serialization → 암호화 transport → 원격 resumption, re-indexing X.

흔한 모양: 노트북에서 prototype (free 로컬 파일, 빠른 iteration), test suite 무거워지면 cloud VM 에 hand off (노트북 free), 폰에서 resume 해서 모니터 (SSH 클라이언트 앱 없이). 세 디바이스 가로지르는 한 일관 세션.

Code

Three-stage handoff·text
1. State serialization
   • file tree references + open file contents
   • full conversation history
   • tool configurations, env vars
   • pending operations
   → compressed encrypted payload

2. Encrypted transport
   • SSH or dedicated secure channel
   • payload travels E2E-encrypted
   • Anthropic's coordination layer can't read contents

3. Remote resumption
   • decompress + restore session on target
   • <100ms typical resume latency (after payload arrives)
   • zero re-prompts, zero re-indexing
Quick-start commands·bash
# Register a remote target (Claude Code Desktop UI also works)
# Settings → Remote → Add SSH Connection

# CLI handoff
claude remote handoff --destination ubuntu@54.234.12.99

# List active connections
claude remote list

# Disconnect & resume locally
claude remote disconnect

# Run Claude Code remotely without handoff (just SSH)
ssh ubuntu@54.234.12.99 "claude --project /home/ubuntu/myproject"

External links

Exercise

실제 세션 잡아 (실제 repo). primary 머신에서 시작, 접근 가능한 두 번째 머신으로 hand off (LAN 의 다른 노트북도 카운트). 대화 history 와 open 파일 같이 왔는지 확인. hand back.

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.