📚 스킬 = 매뉴얼 / 지침서
Claude가 읽고 따르는 지식
같은 대화 안에서 참조됨
예: 번역 용어집, 아마존 SEO 가이드, 이미지 생성 규칙
🤖 서브에이전트 = 전문 담당자
별도 대화창에서 독립적으로 실행
맡은 일만 하고 결과만 돌려줌
예: 번역 담당, 카피 담당, 이미지 생성 담당┌─────────────────────────────────────────────────────────────┐
│ 📚 ORCHESTRATOR (메인 컨트롤 타워) │
│ 전체 워크플로우를 관리하는 지침서 │
└─────────────────────────────┬───────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 1: 🔍 시장 조사 │
│ │
│ 🤖 Market Research Agent │
│ → 타겟 국가 트렌드, 경쟁사 분석, 모델 선호도 │
└─────────────────────────────┬───────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 2: 📝 번역 & 카피라이팅 [순차 실행] │
│ │
│ 🤖 Translation Agent ────→ 🤖 Copywriting Agent │
│ (📚 translation 스킬) (📚 copywriting 스킬) │
│ → 정확한 번역 → 아마존 SEO 카피 최적화 │
│ │
└─────────────────────────────┬───────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 3: 🖼️ 이미지 현지화 [순차 실행] │
│ │
│ 🤖 Image Analysis Agent ──→ 🤖 Image Generation Agent │
│ (📚 image-generation 스킬) │
│ → 이미지 의도 분석 → Gemini API로 이미지 생성 │
│ │
│ ⚠️ 제품 이미지 변형 절대 금지 / with-text + without-text 2버전 │
└─────────────────────────────┬───────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 4: ✅ 검수 │
│ │
│ 🤖 QA Reviewer Agent (📚 qa 스킬) │
│ → 텍스트 + 이미지 동시 검수 │
│ → 실패 시 Phase 2~3 재실행 │
└─────────────────────────────┬───────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 5: 📤 저장 (📚 output-manager 스킬) │
│ │
│ Google Sheets (텍스트) + Google Drive (이미지) + Figma │
└─────────────────────────────────────────────────────────────┘project/
│
├── .claude/
│ ├── skills/ ← 📚 매뉴얼 모음
│ │ ├── translation/
│ │ │ ├── SKILL.md ← 번역 원칙
│ │ │ └── references/
│ │ │ ├── beauty-glossary-us.md ← 미국 뷰티 용어집
│ │ │ ├── beauty-glossary-jp.md ← 일본 뷰티 용어집
│ │ │ └── forbidden-claims.md ← 금지 표현 목록
│ │ ├── copywriting/
│ │ │ ├── SKILL.md
│ │ │ └── references/
│ │ │ ├── amazon-seo-guide.md
│ │ │ ├── tone-guide-us.md
│ │ │ └── tone-guide-jp.md
│ │ ├── image-generation/
│ │ ├── qa/
│ │ ├── orchestrator/
│ │ └── output-manager/
│ │
│ ├── agents/ ← 🤖 에이전트 정의
│ │ ├── market-researcher.md
│ │ ├── translator.md
│ │ ├── copywriter.md
│ │ ├── image-analyst.md
│ │ ├── image-generator.md
│ │ └── qa-reviewer.md
│ │
│ └── settings.json ← MCP 서버 설정
│
├── config/
│ ├── countries.yaml ← 타겟 국가 목록
│ ├── brands.yaml ← 브랜드 목록
│ └── market-research/ ← 시장 조사 캐시
│
├── brand-assets/ ← 제품 원본 이미지 (변형 금지!)
│ └── {brand}/products/{product}/
│ ├── cuts/ ← 누끼컷 (AI 참조용)
│ ├── photoshoots/ ← 촬영컷
│ └── product-info.json
│
└── data/
├── processing/ ← 중간 결과
└── output/ ← 최종 결과물- code: MY
language: ms-MY
name: Malaysia
alternate_platforms:
- shopee.com.my
special_considerations:
- halal_certification
- hijab_models{
"mcpServers": {
"google-sheets": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-google-sheets"]
},
"google-drive": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-google-drive"]
},
"figma-read": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-figma"]
},
"gemini-image": {
"command": "python",
"args": ["gemini-mcp-server.py"]
}
}
}