Claude Code로 기존 프로젝트 분석하는 방법Step 1 — 프로젝트 폴더에서 Claude Code 시작터미널에서 프로젝트 폴더로 이동 후 실행합니다.cd 내프로젝트폴더claude### Step 2 — 코드베이스 분석 요청Claude Code는 agentic search를 사용해서 프로젝트 구조와 의존성을 자동으로 파악합니다. 수동으로 파일을 선택하지 않아도 됩니다. 자주 쓰는 분석 프롬프트들이에요:# 전체 구조 파악Give me a high-level overview of this codebase# 특정 기능 찾기Where is the user authentication logic?# 의존성 분석What are the main dependencies and how are they used?# 특정..