| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A 3-day Claude Code curriculum delivered as six rendered PDF chapters and 502 extracted code snippets. 6개 챕터 PDF와 502개 추출 코드 스니펫으로 제공되는 3일간의 Claude Code 커리큘럼입니다.
Claude Code Deep Dive Workshop is a Korean-language technical curriculum delivered as ready-to-present PDF slide decks and a searchable archive of every code example used in the workshop. The repository contains six chapter PDFs at the project root covering 850 slides in total, paired with 502 markdown files under Script/workshop-code/ that extract each code-bearing slide into a standalone, grep-friendly snippet with Korean speaker notes. All slide artifacts follow a consistent design system for visual identity.
# 1. Clone the repository
git clone https://github.com/whchoi98/claude-code-workshop.git
cd claude-code-workshop
# 2. Open the PDF for a given chapter (example: Chapter 1)
xdg-open ClaudeCode_Ch1_20260525.pdf # Linux
# open ClaudeCode_Ch1_20260525.pdf # macOS
# 3. Browse extracted code snippets
ls Script/workshop-code/ch6-sdk/part-06-production/# Find Python retry patterns
grep -rn "tenacity" Script/workshop-code/
# Find hook examples across all chapters
grep -rn "PreToolUse" Script/workshop-code/
# Find authentication-related snippets by file name
find Script/workshop-code/ -name "*auth*"
# List all snippets in a specific part
ls Script/workshop-code/ch6-sdk/part-01-sdk-basics/
# → 007-python-install-first-call.md
# → 008-typescript-install-first-call.md
# → ...
# Open a single snippet
cat Script/workshop-code/ch6-sdk/part-06-production/104-retry-python.mdclaude-code-workshop/
├── README.md # This file
├── CHANGELOG.md # Per-version change history
├── ClaudeCode_Ch1_20260525.pdf # Ch.1 Overview, 200 slides
├── ClaudeCode_Ch2_20260525.pdf # Ch.2 Agents & Subagents, 110 slides
├── ClaudeCode_Ch3_20260525.pdf # Ch.3 Admin Setup, 120 slides
├── ClaudeCode_Ch4_20260525.pdf # Ch.4 Settings, 140 slides
├── ClaudeCode_Ch5_20260525..pdf # Ch.5 CLI Reference, 130 slides
├── ClaudeCode_Ch6_20260525.pdf # Ch.6 Agent SDK, 150 slides
└── Script/
├── workshop-code-README.md # Top-level guide for the snippet archive
└── workshop-code/ # 502 extracted code snippets
├── README.md
├── ch1-overview/ # 10 parts, 108 snippets
├── ch2-agents/ # 9 parts, 53 snippets
├── ch3-admin/ # 9 parts, 57 snippets
├── ch4-settings/ # 9 parts, 86 snippets
├── ch5-cli/ # 8 parts, 86 snippets
└── ch6-sdk/ # 8 parts, 112 snippets
Each snippet file is named NNN-meaningful-slug.md, where NNN is the slide number. The markdown body contains the slide title, the full code block, and the Korean speaker note.
Contributions are welcome. Follow this flow:
For changes that affect snippet content, please cite the source slide number in the commit body so reviewers can cross-reference the PDF.
This project is distributed under Proprietary terms. Internal use, private delivery to customers, and modification for internal training are permitted; external redistribution and commercial resale are prohibited.
Claude Code Deep Dive Workshop은 발표 가능한 PDF 슬라이드 자료와 워크샵에서 사용된 모든 코드 예제를 검색 가능한 형태로 함께 제공하는 한국어 기술 커리큘럼입니다. 저장소 루트에는 총 850 슬라이드 분량의 6개 챕터 PDF가, Script/workshop-code/ 아래에는 코드를 포함한 슬라이드를 각각 독립된 마크다운 파일로 추출한 502개의 스니펫이 들어 있습니다. 추출된 각 파일에는 한국어 발표자 노트가 포함되어 있으며, 모든 슬라이드 자료는 일관된 디자인 시스템을 따라 시각 정체성을 유지합니다.
# 1. 저장소 클론
git clone https://github.com/whchoi98/claude-code-workshop.git
cd claude-code-workshop
# 2. 원하는 챕터 PDF 열기 (예: Chapter 1)
xdg-open ClaudeCode_Ch1_20260525.pdf # Linux
# open ClaudeCode_Ch1_20260525.pdf # macOS
# 3. 추출된 코드 스니펫 탐색
ls Script/workshop-code/ch6-sdk/part-06-production/# Python retry 패턴 찾기
grep -rn "tenacity" Script/workshop-code/
# 전체 챕터에서 Hook 예제 찾기
grep -rn "PreToolUse" Script/workshop-code/
# 인증 관련 스니펫을 파일명으로 찾기
find Script/workshop-code/ -name "*auth*"
# 특정 파트의 스니펫 목록 확인
ls Script/workshop-code/ch6-sdk/part-01-sdk-basics/
# → 007-python-install-first-call.md
# → 008-typescript-install-first-call.md
# → ...
# 단일 스니펫 열기
cat Script/workshop-code/ch6-sdk/part-06-production/104-retry-python.mdclaude-code-workshop/
├── README.md # 이 파일
├── CHANGELOG.md # 버전별 변경 사항
├── ClaudeCode_Ch1_20260525.pdf # Ch.1 Overview, 200 슬라이드
├── ClaudeCode_Ch2_20260525.pdf # Ch.2 Agents & Subagents, 110 슬라이드
├── ClaudeCode_Ch3_20260525.pdf # Ch.3 Admin Setup, 120 슬라이드
├── ClaudeCode_Ch4_20260525.pdf # Ch.4 Settings, 140 슬라이드
├── ClaudeCode_Ch5_20260525..pdf # Ch.5 CLI Reference, 130 슬라이드
├── ClaudeCode_Ch6_20260525.pdf # Ch.6 Agent SDK, 150 슬라이드
└── Script/
├── workshop-code-README.md # 스니펫 아카이브 최상위 가이드
└── workshop-code/ # 추출된 502개 코드 스니펫
├── README.md
├── ch1-overview/ # 10개 파트, 108개 스니펫
├── ch2-agents/ # 9개 파트, 53개 스니펫
├── ch3-admin/ # 9개 파트, 57개 스니펫
├── ch4-settings/ # 9개 파트, 86개 스니펫
├── ch5-cli/ # 8개 파트, 86개 스니펫
└── ch6-sdk/ # 8개 파트, 112개 스니펫
각 스니펫 파일은 NNN-의미있는-슬러그.md 형식이며, NNN은 슬라이드 번호입니다. 마크다운 본문에는 슬라이드 제목, 전체 코드 블록, 한국어 발표자 노트가 포함됩니다.
기여를 환영합니다. 아래 순서를 따라 주세요.
스니펫 내용이 변경되는 경우, 리뷰어가 PDF와 대조할 수 있도록 커밋 본문에 원본 슬라이드 번호를 명시해 주세요.
이 프로젝트는 Proprietary 조건으로 배포됩니다. 내부 활용, 고객사 대상 비공개 발표, 사내 교육 목적의 수정은 허용되며, 외부 공개 재배포와 상업적 재판매는 금지됩니다.
| Back | FazBrowse Home | New Git URL |