Claude Code를 활용한 인터랙티브 강의 시리즈입니다.
An interactive lecture series for learning Claude Code.
| Day | 주제 / Topic | 소요 시간 / Duration |
|---|---|---|
| Day 1 | CLAUDE.md와 Memory로 나에게 맞는 Claude Code 세팅하기 | 60분 |
| Day 2 | 나만의 Skill 만들기 — 도구에서 워크플로우까지 | 60분 |
git clone https://github.com/myrealtrip/claude-code-camp.git
cd claude-code-campClaude Code를 실행하고 슬래시 커맨드로 강의를 시작합니다.
Launch Claude Code and start a lecture with the slash command.
claudeClaude Code 안에서 아래 커맨드를 입력합니다:
Inside Claude Code, type the following command:
/camp-day1
/camp-day2
강의가 인터랙티브하게 진행됩니다. 각 섹션에서 설명, 실습, 퀴즈가 차례로 진행되며, 사용자의 페이스에 맞춰 진행됩니다.
The lecture runs interactively. Each section includes explanations, hands-on exercises, and quizzes, proceeding at your pace.
claude-code-camp/
├── README.md
├── day1/
│ ├── day1-lecture.md # Day 1 강의 교안 / Lecture material
│ └── exercises/ # 실습 템플릿 / Exercise templates
├── day2/
│ └── day2-lecture.md # Day 2 강의 교안 / Lecture material
├── .claude/
│ ├── commands/
│ │ └── camp-skill-generator.md # 교안 → 스킬 변환기 / Lecture-to-skill converter
│ └── skills/
│ ├── camp-day1/
│ │ └── SKILL.md # Day 1 인터랙티브 스킬 / Day 1 interactive skill
│ ├── camp-day2/
│ │ ├── SKILL.md # Day 2 인터랙티브 스킬 / Day 2 interactive skill
│ │ ├── journey-diagram.html # 여정 다이어그램 / Journey diagram
│ │ └── orchestration-diagram.html # 오케스트레이션 도식 / Orchestration diagram
│ ├── camp-os-detect/ # 공통: OS 자동 감지 / Shared: OS detection
│ ├── camp-lecture-start/ # 공통: 강의 시작 루틴 / Shared: Lecture start routine
│ ├── camp-quiz/ # 공통: 퀴즈 출제/채점 / Shared: Quiz pattern
│ └── camp-section-transition/ # 공통: 섹션 전환 / Shared: Section transition
└── .gitignore
새로운 Day 강의를 추가하려면:
To add a new Day lecture:
dayN/dayN-lecture.md형식으로 교안을 작성합니다 / Create a lecture file/camp-skill-generator커맨드로 스킬을 자동 생성합니다 / Auto-generate a skill with the command