# CWS v2.0 프로젝트 구조 생성 가이드 > 새 프로젝트 시작 시 이 가이드를 따라 디렉토리 구조를 생성하세요. **버전:** 2.0.0 **최종 수정:** 2026-02-01 --- ## 🚀 빠른 시작 ### Windows (PowerShell 또는 CMD) 프로젝트 루트에서 실행: ```batch mkdir settings authors volumes logs cd volumes && mkdir vol-01 && cd vol-01 mkdir plots chapters summaries reports logs cd reports && mkdir design writing verification polish modification retouch artistic cd ..\..\.. ``` ### Unix/Linux/Mac (Bash) ```bash mkdir -p settings authors volumes logs mkdir -p volumes/vol-01/{plots,chapters,summaries,logs} mkdir -p volumes/vol-01/reports/{design,writing,verification,polish,modification,retouch,artistic} ``` --- ## 📋 필수 파일 생성 디렉토리 생성 후 다음 파일들을 복사/생성: ### 1. claude.md ```bash # 템플릿에서 복사 cp "l:\내 드라이브\Writing\Guide\v2\templates\claude.md.template" claude.md ``` **수정 필요:** - `[프로젝트명]` → 실제 프로젝트명 - `YYYY-MM-DD` → 생성 날짜 ### 2. WORK-MODE.txt ```bash # 템플릿에서 복사 cp "l:\내 드라이브\Writing\Guide\v2\templates\WORK-MODE.txt.template" WORK-MODE.txt ``` **초기 세팅:** - P0-0 프로세스 실행 시 자동 세팅됨 ### 3. README.md 프로젝트 개요 파일 생성 (직접 작성) ### 4. .gitignore (선택) ``` # 임시 파일 *.tmp *.bak # 개인 메모 **/notes/ ``` --- ## 📂 최종 디렉토리 구조 ``` 프로젝트-루트/ ├── settings/ # 전체 프로젝트 설정 │ ├── project-config.md │ ├── worldview.md │ ├── characters-master.md │ ├── timeline-master.md │ └── plot-master.md │ ├── authors/ # 작가 문체 │ └── author-01.md │ ├── volumes/ │ └── vol-01/ │ ├── vol-01-timeline.md # 권별 타임라인 │ ├── vol-01-characters.md # 권별 캐릭터 │ ├── vol-01-plot.md # 권별 플롯 │ │ │ ├── plots/ # 5화별 상세 플롯 │ │ ├── vol-01-plot-001-005.md │ │ └── ... │ │ │ ├── chapters/ # 챕터 │ │ ├── vol-01-ch-001.md │ │ └── ... │ │ │ ├── summaries/ # 서머리 │ │ ├── vol-01-summary-001-005.md │ │ └── vol-01-summary-final.md │ │ │ ├── reports/ # 권별 리포트 │ │ ├── design/ # 설계 검증 │ │ ├── writing/ # 작성 관련 │ │ ├── verification/ # 검증 관련 │ │ ├── polish/ # 품질 개선 │ │ ├── modification/ # 내용 수정 │ │ ├── retouch/ # 퇴고 │ │ └── artistic/ # 예술성 검토 │ │ │ └── logs/ # 권별 완료 기록 │ ├── logs/ # 전체 프로젝트 로그 │ ├── claude.md # Claude 작업 규칙 ├── WORK-MODE.txt # 현재 작업 상태 ├── README.md # 프로젝트 개요 └── .git/ # Git 저장소 ``` --- ## ✅ 생성 확인 체크리스트 디렉토리 생성 후 다음을 확인하세요: - [ ] `settings/` 폴더 존재 - [ ] `authors/` 폴더 존재 - [ ] `volumes/vol-01/` 폴더 존재 - [ ] `volumes/vol-01/reports/design/` 폴더 존재 - [ ] `volumes/vol-01/logs/` 폴더 존재 - [ ] `logs/` 폴더 존재 (프로젝트 루트) - [ ] `claude.md` 파일 생성 및 수정 완료 - [ ] `WORK-MODE.txt` 파일 생성 - [ ] `README.md` 파일 생성 - [ ] Git 저장소 초기화 (`git init`) --- ## 🔄 추가 권(Volume) 생성 2권, 3권 등 추가 권 생성 시: ### Windows ```batch cd volumes mkdir vol-02 cd vol-02 mkdir plots chapters summaries reports logs cd reports mkdir design writing verification polish modification retouch artistic cd ..\.. ``` ### Unix/Linux/Mac ```bash mkdir -p volumes/vol-02/{plots,chapters,summaries,logs} mkdir -p volumes/vol-02/reports/{design,writing,verification,polish,modification,retouch,artistic} ``` --- ## 📖 다음 단계 구조 생성 완료 후: 1. **P0-0 프로세스 실행**: 프로젝트 초기화 ``` "P0-0 실행해줘" 또는 "프로젝트 초기화 해줘" ``` 2. **P0-1 프로세스 실행**: 아이디어 컨셉 정의 ``` "P0-1 실행해줘" ``` 3. **프로세스 카탈로그 참조**: ``` l:\내 드라이브\Writing\Guide\v2\PROCESS-CATALOG.md ``` --- **Created:** 2026-02-01 **Author:** Alex & Claude Sonnet 4.5