본문 바로가기
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

작업의 단위를 컴퓨터가 아니라 세션으로 바꿔

Claude Remote는 코딩 세션을 다른 컴퓨터로 옮길 수 있는 하나의 작업물처럼 다뤄. 노트북에서 시작한 대화와 파일 참조, 도구 상태를 강한 클라우드 VM으로 넘기고, 태블릿에서 이어서 지켜봐도 같은 세션이야.

이 기능은 약한 로컬 컴퓨터를 쓰느냐, 원격 서버로 SSH해 지금까지의 문맥을 버리느냐는 가짜 양자택일을 없애. 세션 상태를 묶고 암호화해 전송한 뒤 대상에서 복원하므로 다시 설명하거나 색인할 필요가 없어.

로컬에서는 빠르게 시도하고, 무거운 테스트는 원격에서 돌리고, 이동 중에는 휴대폰으로 상태를 확인하는 식으로 역할을 나눌 수 있어. 넘기기 전에 /compact로 긴 기록을 정리하면 payload와 복귀 시간이 줄어.

2026년 2월에 나온 Remote는 세션을 복원하는 데 걸리는 시간을 100ms 아래로 줄이는 것을 목표로 해.

Code

세 단계로 세션 넘기기·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
빠르게 시작하는 명령·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

실제 저장소에서 세션을 하나 시작해. 주로 쓰는 컴퓨터에서 작업을 시작한 뒤, 접속할 수 있는 두 번째 컴퓨터로 세션을 넘겨. LAN에 있는 다른 노트북도 괜찮아. 대화 기록과 열어 둔 파일이 함께 넘어왔는지 확인하고, 다시 원래 컴퓨터로 가져와.

Progress

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

댓글 0

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

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