dantelabs-agentic-school 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +133 -0
- package/README.md +472 -0
- package/cli/bin/cli.js +60 -0
- package/cli/src/commands/info.js +75 -0
- package/cli/src/commands/install.js +203 -0
- package/cli/src/commands/list.js +91 -0
- package/cli/src/commands/uninstall.js +112 -0
- package/cli/src/lib/config.js +150 -0
- package/cli/src/lib/downloader.js +89 -0
- package/cli/src/lib/installer.js +236 -0
- package/cli/src/utils/fs-utils.js +41 -0
- package/cli/src/utils/logger.js +37 -0
- package/package.json +57 -0
- package/plugins/brand-analytics/agents/brand-strategist.md +80 -0
- package/plugins/brand-analytics/agents/competitive-analyst.md +94 -0
- package/plugins/brand-analytics/commands/analyze-brand.md +102 -0
- package/plugins/brand-analytics/skills/brand-positioning/SKILL.md +158 -0
- package/plugins/campaign-orchestration/agents/campaign-director.md +134 -0
- package/plugins/campaign-orchestration/agents/workflow-coordinator.md +163 -0
- package/plugins/campaign-orchestration/commands/run-full-pipeline.md +229 -0
- package/plugins/campaign-orchestration/commands/run-phase.md +177 -0
- package/plugins/campaign-orchestration/skills/pipeline-framework/SKILL.md +280 -0
- package/plugins/common/skills/auth-manager/SKILL.md +236 -0
- package/plugins/common/skills/docx/SKILL.md +497 -0
- package/plugins/common/skills/docx/ooxml/scripts/pack.py +159 -0
- package/plugins/common/skills/docx/ooxml/scripts/unpack.py +29 -0
- package/plugins/common/skills/docx/ooxml/scripts/validate.py +69 -0
- package/plugins/common/skills/docx/ooxml.md +371 -0
- package/plugins/common/skills/docx/scripts/__init__.py +1 -0
- package/plugins/common/skills/docx/scripts/document.py +1276 -0
- package/plugins/common/skills/docx/scripts/templates/comments.xml +3 -0
- package/plugins/common/skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/plugins/common/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/plugins/common/skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/plugins/common/skills/docx/scripts/templates/people.xml +3 -0
- package/plugins/common/skills/docx/scripts/utilities.py +374 -0
- package/plugins/common/skills/pdf/SKILL.md +488 -0
- package/plugins/common/skills/pdf/forms.md +314 -0
- package/plugins/common/skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/plugins/common/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/plugins/common/skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/plugins/common/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/plugins/common/skills/pdf/scripts/create_validation_image.py +41 -0
- package/plugins/common/skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/plugins/common/skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/plugins/common/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/plugins/common/skills/pptx/SKILL.md +383 -0
- package/plugins/common/skills/pptx/html2pptx.md +429 -0
- package/plugins/common/skills/pptx/ooxml/scripts/pack.py +159 -0
- package/plugins/common/skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/plugins/common/skills/pptx/ooxml/scripts/validate.py +69 -0
- package/plugins/common/skills/pptx/ooxml.md +336 -0
- package/plugins/common/skills/pptx/scripts/html2pptx.js +979 -0
- package/plugins/common/skills/pptx/scripts/inventory.py +1020 -0
- package/plugins/common/skills/pptx/scripts/rearrange.py +231 -0
- package/plugins/common/skills/pptx/scripts/replace.py +385 -0
- package/plugins/common/skills/pptx/scripts/thumbnail.py +450 -0
- package/plugins/content-creation/agents/conversion-copywriter.md +144 -0
- package/plugins/content-creation/agents/copy-strategist.md +114 -0
- package/plugins/content-creation/agents/script-writer.md +173 -0
- package/plugins/content-creation/commands/generate-copy.md +172 -0
- package/plugins/content-creation/commands/write-script.md +201 -0
- package/plugins/content-creation/skills/hook-formulas/SKILL.md +180 -0
- package/plugins/content-creation/skills/message-architecture/SKILL.md +182 -0
- package/plugins/creative-production/agents/creative-director.md +142 -0
- package/plugins/creative-production/agents/production-coordinator.md +140 -0
- package/plugins/creative-production/commands/create-image.md +177 -0
- package/plugins/creative-production/commands/create-video.md +222 -0
- package/plugins/creative-production/skills/image-prompt-guide/SKILL.md +319 -0
- package/plugins/creative-production/skills/video-production/SKILL.md +310 -0
- package/plugins/customer-segmentation/agents/data-analyst.md +82 -0
- package/plugins/customer-segmentation/agents/segmentation-architect.md +116 -0
- package/plugins/customer-segmentation/commands/create-segments.md +124 -0
- package/plugins/customer-segmentation/skills/activation-map/SKILL.md +172 -0
- package/plugins/customer-segmentation/skills/segmentation-framework/SKILL.md +161 -0
- package/plugins/market-research/skills/analysis-reports/SKILL.md +325 -0
- package/plugins/market-research/skills/analysis-reports/references/data_patterns.md +241 -0
- package/plugins/market-research/skills/analysis-reports/references/report_structure.md +649 -0
- package/plugins/market-research/skills/analysis-reports/references/visualization_guide.md +244 -0
- package/plugins/market-research/skills/analysis-reports/scripts/generate_visual.py +38 -0
- package/plugins/market-research/skills/diagram-generator/SKILL.md +239 -0
- package/plugins/market-research/skills/diagram-generator/scripts/generate_visual.py +313 -0
- package/plugins/persona-builder/agents/customer-insights-partner.md +68 -0
- package/plugins/persona-builder/agents/persona-architect.md +151 -0
- package/plugins/persona-builder/commands/build-persona.md +150 -0
- package/plugins/persona-builder/skills/persona-framework/SKILL.md +189 -0
- package/plugins/social-strategy/agents/channel-analyst.md +95 -0
- package/plugins/social-strategy/agents/social-strategy-director.md +123 -0
- package/plugins/social-strategy/commands/plan-channels.md +163 -0
- package/plugins/social-strategy/skills/channel-roadmap/SKILL.md +166 -0
- package/plugins/social-strategy/skills/content-pillars/SKILL.md +164 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dantelabs-agentic-school",
|
|
3
|
+
"description": "에이전틱 비즈니스 교육 및 실무를 위한 플러그인 마켓플레이스. 마케팅, 데이터 분석, AI/ML, 비즈니스 자동화 등 다양한 영역의 전문 에이전트와 실행 도구를 통합합니다.",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"owner": {
|
|
6
|
+
"name": "Dante Labs",
|
|
7
|
+
"email": "datapod.k@gmail.com",
|
|
8
|
+
"url": "https://dante-datalab.com"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/dandacompany/dantelabs-agentic-school"
|
|
13
|
+
},
|
|
14
|
+
"plugins": [
|
|
15
|
+
{
|
|
16
|
+
"name": "common",
|
|
17
|
+
"description": "공통 유틸리티 스킬 모음. 인증 관리, 문서 제작 도구(PPTX, PDF, DOCX) 등 여러 플러그인에서 공통으로 사용하는 기능을 제공합니다.",
|
|
18
|
+
"version": "1.0.0",
|
|
19
|
+
"path": "plugins/common",
|
|
20
|
+
"components": {
|
|
21
|
+
"skills": ["auth-manager", "pptx", "pdf", "docx"]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "brand-analytics",
|
|
26
|
+
"description": "브랜드 소개서를 분석하여 포지셔닝, SWOT, 경쟁사 분석을 수행합니다.",
|
|
27
|
+
"version": "1.0.0",
|
|
28
|
+
"path": "plugins/brand-analytics",
|
|
29
|
+
"components": {
|
|
30
|
+
"agents": ["brand-strategist", "competitive-analyst"],
|
|
31
|
+
"commands": ["analyze-brand"],
|
|
32
|
+
"skills": ["brand-positioning"]
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "customer-segmentation",
|
|
37
|
+
"description": "데이터 기반 고객 세그먼트를 설계하고 정의합니다.",
|
|
38
|
+
"version": "1.0.0",
|
|
39
|
+
"path": "plugins/customer-segmentation",
|
|
40
|
+
"components": {
|
|
41
|
+
"agents": ["segmentation-architect", "data-analyst"],
|
|
42
|
+
"commands": ["create-segments"],
|
|
43
|
+
"skills": ["segmentation-framework", "activation-map"]
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "persona-builder",
|
|
48
|
+
"description": "타겟 세그먼트의 상세 페르소나 카드를 생성합니다.",
|
|
49
|
+
"version": "1.0.0",
|
|
50
|
+
"path": "plugins/persona-builder",
|
|
51
|
+
"components": {
|
|
52
|
+
"agents": ["persona-architect", "customer-insights-partner"],
|
|
53
|
+
"commands": ["build-persona"],
|
|
54
|
+
"skills": ["persona-framework"]
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "social-strategy",
|
|
59
|
+
"description": "페르소나 기반 채널 선정 및 콘텐츠 전략을 수립합니다.",
|
|
60
|
+
"version": "1.0.0",
|
|
61
|
+
"path": "plugins/social-strategy",
|
|
62
|
+
"components": {
|
|
63
|
+
"agents": ["social-strategy-director", "channel-analyst"],
|
|
64
|
+
"commands": ["plan-channels"],
|
|
65
|
+
"skills": ["channel-roadmap", "content-pillars"]
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "content-creation",
|
|
70
|
+
"description": "채널별 홍보 카피 및 스크립트를 생성합니다.",
|
|
71
|
+
"version": "1.0.0",
|
|
72
|
+
"path": "plugins/content-creation",
|
|
73
|
+
"components": {
|
|
74
|
+
"agents": ["copy-strategist", "conversion-copywriter", "script-writer"],
|
|
75
|
+
"commands": ["generate-copy", "write-script"],
|
|
76
|
+
"skills": ["message-architecture", "hook-formulas"]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "creative-production",
|
|
81
|
+
"description": "실제 이미지와 비디오를 생성합니다. kie-image-generator, kie-video-generator 스킬과 연동됩니다.",
|
|
82
|
+
"version": "1.0.0",
|
|
83
|
+
"path": "plugins/creative-production",
|
|
84
|
+
"components": {
|
|
85
|
+
"agents": ["creative-director", "production-coordinator"],
|
|
86
|
+
"commands": ["create-image", "create-video"],
|
|
87
|
+
"skills": ["image-prompt-guide", "video-production"]
|
|
88
|
+
},
|
|
89
|
+
"externalSkills": ["kie-image-generator", "kie-video-generator"]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "campaign-orchestration",
|
|
93
|
+
"description": "전체 마케팅 워크플로우를 통합하고 순차 실행합니다.",
|
|
94
|
+
"version": "1.0.0",
|
|
95
|
+
"path": "plugins/campaign-orchestration",
|
|
96
|
+
"components": {
|
|
97
|
+
"agents": ["campaign-director", "workflow-coordinator"],
|
|
98
|
+
"commands": ["run-full-pipeline", "run-phase"],
|
|
99
|
+
"skills": ["pipeline-framework"]
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "market-research",
|
|
104
|
+
"description": "시장 분석 리포트 및 데이터 시각화를 생성합니다.",
|
|
105
|
+
"version": "1.0.0",
|
|
106
|
+
"path": "plugins/market-research",
|
|
107
|
+
"components": {
|
|
108
|
+
"skills": ["analysis-reports", "diagram-generator"]
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"categories": [
|
|
113
|
+
"agentic-business",
|
|
114
|
+
"marketing",
|
|
115
|
+
"data-analytics",
|
|
116
|
+
"ai-ml",
|
|
117
|
+
"business-ops",
|
|
118
|
+
"automation"
|
|
119
|
+
],
|
|
120
|
+
"tags": [
|
|
121
|
+
"agentic-business",
|
|
122
|
+
"agentic-marketing",
|
|
123
|
+
"brand-analytics",
|
|
124
|
+
"persona",
|
|
125
|
+
"segmentation",
|
|
126
|
+
"social-media",
|
|
127
|
+
"content-generation",
|
|
128
|
+
"image-generation",
|
|
129
|
+
"video-generation",
|
|
130
|
+
"data-analysis",
|
|
131
|
+
"workflow-automation"
|
|
132
|
+
]
|
|
133
|
+
}
|
package/README.md
ADDED
|
@@ -0,0 +1,472 @@
|
|
|
1
|
+
# DanteLabs Agentic School
|
|
2
|
+
|
|
3
|
+
에이전틱 비즈니스 교육 및 실무를 위한 Claude Code 플러그인 마켓플레이스입니다.
|
|
4
|
+
|
|
5
|
+
## 개요
|
|
6
|
+
|
|
7
|
+
이 프로젝트는 **GTM Agents 스타일의 전략 에이전트**와 **실제 생성/분석 도구**를 통합하여, **엔드투엔드 비즈니스 자동화**를 제공합니다.
|
|
8
|
+
|
|
9
|
+
현재 **마케팅 자동화** 플러그인이 구현되어 있으며, 향후 **데이터 분석**, **AI/ML**, **일반 비즈니스** 등으로 확장될 예정입니다.
|
|
10
|
+
|
|
11
|
+
## 지원 영역
|
|
12
|
+
|
|
13
|
+
| 영역 | 상태 | 설명 |
|
|
14
|
+
| --- | --- | --- |
|
|
15
|
+
| 🎯 Marketing | ✅ 구현완료 | 브랜드 분석 → 크리에이티브 제작 |
|
|
16
|
+
| 📊 Data Analytics | 🔜 예정 | 데이터 수집 → 시각화 → 인사이트 |
|
|
17
|
+
| 🤖 AI/ML | 🔜 예정 | 모델 선택 → 학습 → 배포 |
|
|
18
|
+
| 💼 Business Ops | 🔜 예정 | 워크플로우 → 자동화 → 리포팅 |
|
|
19
|
+
|
|
20
|
+
## 특징
|
|
21
|
+
|
|
22
|
+
- **모듈식 플러그인 아키텍처**: 영역별 독립적인 플러그인 구성
|
|
23
|
+
- **전문 에이전트**: 각 단계별 전문성을 갖춘 AI 에이전트
|
|
24
|
+
- **실행 커맨드**: 직접 실행 가능한 작업 커맨드
|
|
25
|
+
- **전문 스킬**: 도메인 지식 및 프레임워크
|
|
26
|
+
- **외부 스킬 연동**: kie-image-generator, kie-video-generator 등
|
|
27
|
+
|
|
28
|
+
## 설치
|
|
29
|
+
|
|
30
|
+
### NPX로 빠른 설치 (권장)
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
# 전체 플러그인 설치
|
|
34
|
+
npx dantelabs-agentic-school install
|
|
35
|
+
|
|
36
|
+
# 특정 플러그인만 설치
|
|
37
|
+
npx dantelabs-agentic-school install brand-analytics
|
|
38
|
+
|
|
39
|
+
# 설치 경로 지정
|
|
40
|
+
npx dantelabs-agentic-school install --path ./my-project
|
|
41
|
+
|
|
42
|
+
# 플러그인 목록 보기
|
|
43
|
+
npx dantelabs-agentic-school list
|
|
44
|
+
|
|
45
|
+
# 플러그인 상세 정보
|
|
46
|
+
npx dantelabs-agentic-school info content-creation
|
|
47
|
+
|
|
48
|
+
# 플러그인 삭제
|
|
49
|
+
npx dantelabs-agentic-school uninstall brand-analytics
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### CLI 옵션
|
|
53
|
+
|
|
54
|
+
| 옵션 | 설명 |
|
|
55
|
+
| --- | --- |
|
|
56
|
+
| `--path, -p` | 설치 경로 (기본: 현재 디렉토리) |
|
|
57
|
+
| `--force, -f` | 기존 파일 덮어쓰기 |
|
|
58
|
+
| `--no-common` | common 유틸리티 제외 |
|
|
59
|
+
| `--dry-run` | 미리보기 (실제 설치 안함) |
|
|
60
|
+
| `--json` | JSON 형식 출력 (list, info) |
|
|
61
|
+
| `-v, --verbose` | 상세 정보 표시 |
|
|
62
|
+
|
|
63
|
+
### Claude Code에서 플러그인 사용
|
|
64
|
+
|
|
65
|
+
#### 방법 1: 프로젝트별 설치 (권장)
|
|
66
|
+
|
|
67
|
+
NPX로 설치하면 프로젝트의 `.claude/` 폴더에 플러그인이 설치됩니다.
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# 프로젝트 폴더에서 실행
|
|
71
|
+
cd my-project
|
|
72
|
+
npx dantelabs-agentic-school install
|
|
73
|
+
|
|
74
|
+
# Claude Code 실행 - 자동으로 .claude/ 폴더 인식
|
|
75
|
+
claude
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
설치 후 구조:
|
|
79
|
+
|
|
80
|
+
```text
|
|
81
|
+
my-project/
|
|
82
|
+
├── .claude/
|
|
83
|
+
│ ├── agents/ # 에이전트 정의
|
|
84
|
+
│ │ └── brand-analytics/
|
|
85
|
+
│ │ └── brand-strategist.md
|
|
86
|
+
│ ├── commands/ # 슬래시 명령어
|
|
87
|
+
│ │ └── brand-analytics/
|
|
88
|
+
│ │ └── analyze-brand.md
|
|
89
|
+
│ └── skills/ # 스킬 (스크립트 포함)
|
|
90
|
+
│ ├── brand-positioning/
|
|
91
|
+
│ └── pptx/
|
|
92
|
+
└── ...
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
#### 방법 2: 플러그인 디렉토리 직접 지정
|
|
96
|
+
|
|
97
|
+
레포지토리를 클론하여 플러그인 디렉토리로 사용:
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
# 레포지토리 클론
|
|
101
|
+
git clone https://github.com/dandacompany/dantelabs-agentic-school.git
|
|
102
|
+
|
|
103
|
+
# Claude Code 실행 시 플러그인 디렉토리 지정
|
|
104
|
+
claude --plugin-dir ./dantelabs-agentic-school
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
#### 방법 3: 전역 설치
|
|
108
|
+
|
|
109
|
+
홈 디렉토리의 `.claude/`에 설치하여 모든 프로젝트에서 사용:
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
# 홈 디렉토리에 설치
|
|
113
|
+
npx dantelabs-agentic-school install --path ~
|
|
114
|
+
|
|
115
|
+
# 이후 모든 프로젝트에서 플러그인 사용 가능
|
|
116
|
+
claude
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### 플러그인 사용 확인
|
|
120
|
+
|
|
121
|
+
Claude Code 실행 후 `/help` 명령어로 설치된 커맨드를 확인할 수 있습니다:
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
# Claude Code 내에서
|
|
125
|
+
/help
|
|
126
|
+
|
|
127
|
+
# 설치된 커맨드 예시
|
|
128
|
+
/analyze-brand --brand-doc ./brand-brief.md
|
|
129
|
+
/create-segments
|
|
130
|
+
/build-persona --segment "워라밸 직장인"
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## 🔧 Common Plugins
|
|
136
|
+
|
|
137
|
+
여러 플러그인에서 공통으로 사용하는 유틸리티 스킬을 제공합니다.
|
|
138
|
+
|
|
139
|
+
## common
|
|
140
|
+
|
|
141
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
142
|
+
| --- | --- | --- |
|
|
143
|
+
| Skill | auth-manager | API 키 및 인증 정보 관리 가이드 |
|
|
144
|
+
| Skill | pptx | 마케팅 프레젠테이션 제작 도구 |
|
|
145
|
+
| Skill | pdf | 마케팅 PDF 문서 제작 및 처리 도구 |
|
|
146
|
+
| Skill | docx | 마케팅 Word 문서 제작 도구 |
|
|
147
|
+
|
|
148
|
+
### auth-manager 스킬
|
|
149
|
+
|
|
150
|
+
외부 서비스 API 키를 안전하게 관리하는 방법을 안내합니다.
|
|
151
|
+
|
|
152
|
+
#### 지원 서비스
|
|
153
|
+
|
|
154
|
+
| 서비스 | 환경변수 | 용도 |
|
|
155
|
+
| --- | --- | --- |
|
|
156
|
+
| Kie.ai | `KIEAI_API_KEY`, `KIE_AI_API_KEY` | 이미지/비디오 생성 |
|
|
157
|
+
| OpenRouter | `OPENROUTER_API_KEY` | LLM API 라우팅 |
|
|
158
|
+
| OpenAI | `OPENAI_API_KEY` | GPT API |
|
|
159
|
+
|
|
160
|
+
#### 인증 설정 (권장)
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
# ~/.claude/auth/kie-ai.env 파일 생성
|
|
164
|
+
KIEAI_API_KEY=your_api_key_here
|
|
165
|
+
KIE_AI_API_KEY=your_api_key_here
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
#### 크레딧 확인
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
# 이미지 생성 크레딧
|
|
172
|
+
python ~/.claude/skills/kie-image-generator/scripts/generate_image.py --credits
|
|
173
|
+
|
|
174
|
+
# 비디오 생성 크레딧
|
|
175
|
+
python ~/.claude/skills/kie-video-generator/scripts/generate_video.py --credits
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
### 문서 제작 스킬
|
|
179
|
+
|
|
180
|
+
마케팅 문서, 프레젠테이션, PDF를 생성하고 편집하는 도구입니다.
|
|
181
|
+
|
|
182
|
+
#### pptx 스킬
|
|
183
|
+
|
|
184
|
+
마케팅 프레젠테이션 제작을 위한 PowerPoint 생성/편집 도구입니다.
|
|
185
|
+
|
|
186
|
+
| 기능 | 설명 |
|
|
187
|
+
| --- | --- |
|
|
188
|
+
| 새 프레젠테이션 생성 | HTML → PPTX 변환 |
|
|
189
|
+
| 기존 파일 편집 | OOXML 직접 편집 |
|
|
190
|
+
| 템플릿 기반 생성 | 기업 템플릿 활용 |
|
|
191
|
+
|
|
192
|
+
**지원 프레젠테이션 유형**:
|
|
193
|
+
|
|
194
|
+
- 캠페인 제안서
|
|
195
|
+
- 브랜드 소개서
|
|
196
|
+
- 분석 리포트
|
|
197
|
+
|
|
198
|
+
#### pdf 스킬
|
|
199
|
+
|
|
200
|
+
마케팅 PDF 문서 제작 및 처리를 위한 종합 도구입니다.
|
|
201
|
+
|
|
202
|
+
| 기능 | 설명 |
|
|
203
|
+
| --- | --- |
|
|
204
|
+
| 텍스트/테이블 추출 | PDF → 텍스트/CSV |
|
|
205
|
+
| PDF 병합/분할 | 캠페인 패키지 생성 |
|
|
206
|
+
| PDF 생성 | Markdown/HTML → PDF |
|
|
207
|
+
|
|
208
|
+
**지원 문서 유형**:
|
|
209
|
+
|
|
210
|
+
- 캠페인 리포트
|
|
211
|
+
- 브랜드 브로슈어
|
|
212
|
+
- 경쟁사 분석 리포트
|
|
213
|
+
|
|
214
|
+
#### docx 스킬
|
|
215
|
+
|
|
216
|
+
마케팅 문서 제작을 위한 Word 문서 생성/편집 도구입니다.
|
|
217
|
+
|
|
218
|
+
| 기능 | 설명 |
|
|
219
|
+
| --- | --- |
|
|
220
|
+
| 새 문서 생성 | Markdown → DOCX |
|
|
221
|
+
| 기존 문서 편집 | OOXML 편집, 템플릿 변수 치환 |
|
|
222
|
+
| 변경 추적 | Redlining 지원 |
|
|
223
|
+
|
|
224
|
+
**지원 문서 유형**:
|
|
225
|
+
|
|
226
|
+
- 마케팅 기획서
|
|
227
|
+
- 브랜드 가이드라인
|
|
228
|
+
- 캠페인 브리프
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
## 🎯 Marketing Plugins
|
|
233
|
+
|
|
234
|
+
브랜드 분석부터 크리에이티브 제작까지 6단계 마케팅 파이프라인을 제공합니다.
|
|
235
|
+
|
|
236
|
+
## 컴포넌트 현황
|
|
237
|
+
|
|
238
|
+
| 항목 | 개수 |
|
|
239
|
+
| --- | --- |
|
|
240
|
+
| 플러그인 | 8개 (common 1 + marketing 7) |
|
|
241
|
+
| 에이전트 | 15개 |
|
|
242
|
+
| 커맨드 | 10개 |
|
|
243
|
+
| 스킬 | 15개 (common 4 + marketing 11) |
|
|
244
|
+
|
|
245
|
+
## 플러그인 목록
|
|
246
|
+
|
|
247
|
+
### 1. brand-analytics
|
|
248
|
+
|
|
249
|
+
브랜드 소개서를 분석하여 전략 브리프를 생성합니다.
|
|
250
|
+
|
|
251
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
252
|
+
| --- | --- | --- |
|
|
253
|
+
| Agent | brand-strategist | 브랜드 전략 분석 |
|
|
254
|
+
| Agent | competitive-analyst | 경쟁사 분석 |
|
|
255
|
+
| Command | /analyze-brand | 브랜드 분석 실행 |
|
|
256
|
+
| Skill | brand-positioning | 포지셔닝 프레임워크 |
|
|
257
|
+
|
|
258
|
+
### 2. customer-segmentation
|
|
259
|
+
|
|
260
|
+
데이터 기반 고객 세그먼트를 설계합니다.
|
|
261
|
+
|
|
262
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
263
|
+
| --- | --- | --- |
|
|
264
|
+
| Agent | segmentation-architect | 세그먼트 설계 |
|
|
265
|
+
| Agent | data-analyst | 데이터 분석 |
|
|
266
|
+
| Command | /create-segments | 세그먼트 생성 |
|
|
267
|
+
| Skill | segmentation-framework | 세그먼테이션 방법론 |
|
|
268
|
+
| Skill | activation-map | 세그먼트 활성화 맵 |
|
|
269
|
+
|
|
270
|
+
### 3. persona-builder
|
|
271
|
+
|
|
272
|
+
타겟 세그먼트의 상세 페르소나를 생성합니다.
|
|
273
|
+
|
|
274
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
275
|
+
| --- | --- | --- |
|
|
276
|
+
| Agent | persona-architect | 페르소나 설계 |
|
|
277
|
+
| Agent | customer-insights-partner | 고객 인사이트 |
|
|
278
|
+
| Command | /build-persona | 페르소나 카드 생성 |
|
|
279
|
+
| Skill | persona-framework | 페르소나 작성 가이드 |
|
|
280
|
+
|
|
281
|
+
### 4. social-strategy
|
|
282
|
+
|
|
283
|
+
페르소나 기반 채널 전략을 수립합니다.
|
|
284
|
+
|
|
285
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
286
|
+
| --- | --- | --- |
|
|
287
|
+
| Agent | social-strategy-director | 채널 전략 총괄 |
|
|
288
|
+
| Agent | channel-analyst | 채널별 분석 |
|
|
289
|
+
| Command | /plan-channels | 채널 전략 수립 |
|
|
290
|
+
| Skill | channel-roadmap | 채널 로드맵 |
|
|
291
|
+
| Skill | content-pillars | 콘텐츠 필러 설계 |
|
|
292
|
+
|
|
293
|
+
### 5. content-creation
|
|
294
|
+
|
|
295
|
+
채널별 홍보 카피와 스크립트를 생성합니다.
|
|
296
|
+
|
|
297
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
298
|
+
| --- | --- | --- |
|
|
299
|
+
| Agent | copy-strategist | 카피 전략 |
|
|
300
|
+
| Agent | conversion-copywriter | 전환 카피 작성 |
|
|
301
|
+
| Agent | script-writer | 영상 스크립트 |
|
|
302
|
+
| Command | /generate-copy | 카피 생성 |
|
|
303
|
+
| Command | /write-script | 스크립트 작성 |
|
|
304
|
+
| Skill | message-architecture | 메시지 구조 |
|
|
305
|
+
| Skill | hook-formulas | 훅 작성 공식 |
|
|
306
|
+
|
|
307
|
+
### 6. creative-production
|
|
308
|
+
|
|
309
|
+
실제 이미지와 비디오를 생성합니다.
|
|
310
|
+
|
|
311
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
312
|
+
| --- | --- | --- |
|
|
313
|
+
| Agent | creative-director | 크리에이티브 총괄 |
|
|
314
|
+
| Agent | production-coordinator | 제작 조율 |
|
|
315
|
+
| Command | /create-image | AI 이미지 생성 |
|
|
316
|
+
| Command | /create-video | AI 비디오 생성 |
|
|
317
|
+
| Skill | image-prompt-guide | 이미지 프롬프트 가이드 |
|
|
318
|
+
| Skill | video-production | 비디오 제작 가이드 |
|
|
319
|
+
|
|
320
|
+
**외부 스킬 연동**:
|
|
321
|
+
|
|
322
|
+
- `kie-image-generator`: 실제 이미지 생성
|
|
323
|
+
- `kie-video-generator`: 실제 비디오 생성
|
|
324
|
+
|
|
325
|
+
### 7. campaign-orchestration
|
|
326
|
+
|
|
327
|
+
전체 마케팅 파이프라인을 통합 실행합니다.
|
|
328
|
+
|
|
329
|
+
| 컴포넌트 | 이름 | 설명 |
|
|
330
|
+
| --- | --- | --- |
|
|
331
|
+
| Agent | campaign-director | 캠페인 총괄 |
|
|
332
|
+
| Agent | workflow-coordinator | 워크플로우 조율 |
|
|
333
|
+
| Command | /run-full-pipeline | 전체 파이프라인 실행 |
|
|
334
|
+
| Command | /run-phase | 특정 단계 실행 |
|
|
335
|
+
| Skill | pipeline-framework | 파이프라인 프레임워크 |
|
|
336
|
+
|
|
337
|
+
## 사용 예시
|
|
338
|
+
|
|
339
|
+
### 전체 캠페인 실행
|
|
340
|
+
|
|
341
|
+
```bash
|
|
342
|
+
/run-full-pipeline --brand-doc "./brand-brief.md"
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
### 단계별 실행
|
|
346
|
+
|
|
347
|
+
```bash
|
|
348
|
+
# 1. 브랜드 분석
|
|
349
|
+
/analyze-brand --brand-doc "./brand-brief.md"
|
|
350
|
+
|
|
351
|
+
# 2. 세그먼트 생성
|
|
352
|
+
/create-segments --brand-doc "./brand-strategy-brief.md"
|
|
353
|
+
|
|
354
|
+
# 3. 페르소나 생성
|
|
355
|
+
/build-persona --segment "워라밸 직장인"
|
|
356
|
+
|
|
357
|
+
# 4. 채널 전략
|
|
358
|
+
/plan-channels --persona "김지현"
|
|
359
|
+
|
|
360
|
+
# 5. 카피 생성
|
|
361
|
+
/generate-copy --channel instagram --persona "김지현"
|
|
362
|
+
|
|
363
|
+
# 6. 이미지/비디오 생성
|
|
364
|
+
/create-image --concept "커피 라이프스타일" --type lifestyle
|
|
365
|
+
/create-video --concept "드립백 추출" --duration 15s
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
## 파이프라인 구조
|
|
369
|
+
|
|
370
|
+
```text
|
|
371
|
+
Brand Document
|
|
372
|
+
↓
|
|
373
|
+
┌─────────────────┐
|
|
374
|
+
│ Phase 1: Brand │ → Brand Strategy Brief
|
|
375
|
+
│ Analysis │
|
|
376
|
+
└─────────────────┘
|
|
377
|
+
↓
|
|
378
|
+
┌─────────────────┐
|
|
379
|
+
│ Phase 2: Seg- │ → Segment Profiles
|
|
380
|
+
│ mentation │
|
|
381
|
+
└─────────────────┘
|
|
382
|
+
↓
|
|
383
|
+
┌─────────────────┐
|
|
384
|
+
│ Phase 3: │ → Persona Cards
|
|
385
|
+
│ Persona │
|
|
386
|
+
└─────────────────┘
|
|
387
|
+
↓
|
|
388
|
+
┌─────────────────┐
|
|
389
|
+
│ Phase 4: Channel│ → Channel Plan, Calendar
|
|
390
|
+
│ Strategy │
|
|
391
|
+
└─────────────────┘
|
|
392
|
+
↓
|
|
393
|
+
┌─────────────────┐
|
|
394
|
+
│ Phase 5: Content│ → Copy, Scripts
|
|
395
|
+
│ Creation │
|
|
396
|
+
└─────────────────┘
|
|
397
|
+
↓
|
|
398
|
+
┌─────────────────┐
|
|
399
|
+
│ Phase 6: Creative│ → Images, Videos
|
|
400
|
+
│ Production │
|
|
401
|
+
└─────────────────┘
|
|
402
|
+
↓
|
|
403
|
+
Complete Campaign Assets
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
## 에이전트 트리거 예시
|
|
407
|
+
|
|
408
|
+
| 요청 | 활성화 에이전트 |
|
|
409
|
+
| --- | --- |
|
|
410
|
+
| "브랜드 분석해줘" | brand-strategist |
|
|
411
|
+
| "고객 세그먼트 나눠줘" | segmentation-architect |
|
|
412
|
+
| "페르소나 만들어줘" | persona-architect |
|
|
413
|
+
| "SNS 전략 수립해줘" | social-strategy-director |
|
|
414
|
+
| "인스타그램 카피 써줘" | conversion-copywriter |
|
|
415
|
+
| "영상 스크립트 작성해줘" | script-writer |
|
|
416
|
+
| "제품 이미지 만들어줘" | creative-director |
|
|
417
|
+
|
|
418
|
+
---
|
|
419
|
+
|
|
420
|
+
## 🔜 Coming Soon
|
|
421
|
+
|
|
422
|
+
## 📊 Data Analytics Plugins (예정)
|
|
423
|
+
|
|
424
|
+
데이터 수집부터 시각화, 인사이트 도출까지의 파이프라인
|
|
425
|
+
|
|
426
|
+
- data-collection: 데이터 수집 및 전처리
|
|
427
|
+
- exploratory-analysis: 탐색적 데이터 분석
|
|
428
|
+
- visualization: 대시보드 및 시각화
|
|
429
|
+
- insight-generation: 인사이트 도출
|
|
430
|
+
|
|
431
|
+
## 🤖 AI/ML Plugins (예정)
|
|
432
|
+
|
|
433
|
+
AI 모델 선택부터 학습, 배포까지의 파이프라인
|
|
434
|
+
|
|
435
|
+
- model-selection: 모델 선택 및 평가
|
|
436
|
+
- training-pipeline: 학습 파이프라인
|
|
437
|
+
- deployment: 모델 배포
|
|
438
|
+
|
|
439
|
+
## 💼 Business Ops Plugins (예정)
|
|
440
|
+
|
|
441
|
+
비즈니스 워크플로우 자동화
|
|
442
|
+
|
|
443
|
+
- workflow-automation: 워크플로우 자동화
|
|
444
|
+
- reporting: 리포팅 및 문서 생성
|
|
445
|
+
- integration: 외부 시스템 연동
|
|
446
|
+
|
|
447
|
+
---
|
|
448
|
+
|
|
449
|
+
## 요구사항
|
|
450
|
+
|
|
451
|
+
- Claude Code CLI
|
|
452
|
+
- kie-image-generator 스킬 (이미지 생성용)
|
|
453
|
+
- kie-video-generator 스킬 (비디오 생성용)
|
|
454
|
+
|
|
455
|
+
> API 키 설정은 [auth-manager 스킬](#auth-manager-스킬) 참조
|
|
456
|
+
|
|
457
|
+
## 라이선스
|
|
458
|
+
|
|
459
|
+
MIT License
|
|
460
|
+
|
|
461
|
+
## 제작
|
|
462
|
+
|
|
463
|
+
Dante Labs
|
|
464
|
+
|
|
465
|
+
- Website: [dante-datalab.com](https://dante-datalab.com)
|
|
466
|
+
- YouTube: [@dante-labs](https://youtube.com/@dante-labs)
|
|
467
|
+
- Email: <datapod.k@gmail.com>
|
|
468
|
+
- Discord: [Dante Labs Community](https://discord.com/invite/rXyy5e9ujs)
|
|
469
|
+
|
|
470
|
+
---
|
|
471
|
+
|
|
472
|
+
☕ 커피 한 잔 후원: [buymeacoffee.com/dante.labs](https://buymeacoffee.com/dante.labs)
|
package/cli/bin/cli.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { Command } from 'commander';
|
|
4
|
+
import chalk from 'chalk';
|
|
5
|
+
import { fileURLToPath } from 'url';
|
|
6
|
+
import { dirname, join } from 'path';
|
|
7
|
+
import { readFileSync } from 'fs';
|
|
8
|
+
|
|
9
|
+
import installCommand from '../src/commands/install.js';
|
|
10
|
+
import listCommand from '../src/commands/list.js';
|
|
11
|
+
import infoCommand from '../src/commands/info.js';
|
|
12
|
+
import uninstallCommand from '../src/commands/uninstall.js';
|
|
13
|
+
|
|
14
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
15
|
+
const __dirname = dirname(__filename);
|
|
16
|
+
|
|
17
|
+
// Read version from package.json
|
|
18
|
+
const pkg = JSON.parse(
|
|
19
|
+
readFileSync(join(__dirname, '../../package.json'), 'utf8')
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
const program = new Command();
|
|
23
|
+
|
|
24
|
+
program
|
|
25
|
+
.name('dantelabs')
|
|
26
|
+
.description('Dante Labs Agentic School - Claude Code Plugin Installer')
|
|
27
|
+
.version(pkg.version)
|
|
28
|
+
.addHelpText('after', `
|
|
29
|
+
${chalk.bold('Examples:')}
|
|
30
|
+
${chalk.gray('# Install all plugins')}
|
|
31
|
+
$ npx dantelabs-agentic-school install
|
|
32
|
+
|
|
33
|
+
${chalk.gray('# Install specific plugin')}
|
|
34
|
+
$ npx dantelabs-agentic-school install brand-analytics
|
|
35
|
+
|
|
36
|
+
${chalk.gray('# Install to custom path')}
|
|
37
|
+
$ npx dantelabs-agentic-school install --path ./my-project
|
|
38
|
+
|
|
39
|
+
${chalk.gray('# List available plugins')}
|
|
40
|
+
$ npx dantelabs-agentic-school list
|
|
41
|
+
|
|
42
|
+
${chalk.gray('# Show plugin info')}
|
|
43
|
+
$ npx dantelabs-agentic-school info brand-analytics
|
|
44
|
+
|
|
45
|
+
${chalk.bold('More info:')} https://github.com/dandacompany/dantelabs-agentic-school
|
|
46
|
+
`);
|
|
47
|
+
|
|
48
|
+
// Register commands
|
|
49
|
+
installCommand(program);
|
|
50
|
+
listCommand(program);
|
|
51
|
+
infoCommand(program);
|
|
52
|
+
uninstallCommand(program);
|
|
53
|
+
|
|
54
|
+
// Parse arguments
|
|
55
|
+
program.parse();
|
|
56
|
+
|
|
57
|
+
// Show help if no command provided
|
|
58
|
+
if (!process.argv.slice(2).length) {
|
|
59
|
+
program.outputHelp();
|
|
60
|
+
}
|