feat: add D.intelligence Agent Corps (9 skills + shared infra)
Add 9 agent skills (#70-#77, #88) for D.intelligence business operations: brand guardian, brand editor, doc secretary, quotation manager, service architect, marketing manager, back office manager, account manager, and skill update meta-agent. Includes shared Python package (dintel), reference docs, document/quotation templates, service module CSVs, cross-device installer, and comprehensive user guide. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
85
custom-skills/74-dintel-service-architect/README.md
Normal file
85
custom-skills/74-dintel-service-architect/README.md
Normal file
@@ -0,0 +1,85 @@
|
||||
# 74 — D.intelligence Service Architect
|
||||
|
||||
**Agent #74** in the [D.intelligence Agent Corps](../../dintel-shared/README.md).
|
||||
Professional service scope design and module recommendation for [D.intelligence](https://dintelligence.co.kr).
|
||||
|
||||
## What It Does
|
||||
|
||||
1. **Needs Analysis** -- Understand client's business context, pain points, and goals through a structured 7-step inquiry framework
|
||||
2. **Module Mapping** -- Map client needs to specific service modules (A1-A6, T1-T7, G1-G4) using a decision tree
|
||||
3. **Package Recommendation** -- Recommend pre-built packages (Starter, Standard, Premium, SEO Intensive) or custom combinations
|
||||
4. **Scope Design** -- Define project scope, deliverables, and timeline estimates
|
||||
5. **Handoff to Quotation** -- Pass structured scope document to Quotation Manager (#73) for pricing
|
||||
|
||||
## Agent Corps Context
|
||||
|
||||
| Field | Value |
|
||||
|-------|-------|
|
||||
| Agent # | 74 |
|
||||
| Skill Name | `dintel-service-architect` |
|
||||
| Version | 1.0.0 |
|
||||
| Autonomy | Inquiry-driven |
|
||||
| Collaborates With | **#73 Quotation Manager** (pricing handoff), **#77 Account Manager** (client intake), **dintel-shared** (shared constants) |
|
||||
|
||||
## Triggers
|
||||
|
||||
- "service recommendation", "서비스 추천"
|
||||
- "module combination", "모듈 조합"
|
||||
- "service scope", "서비스 범위 설계"
|
||||
- "package recommendation", "패키지 추천"
|
||||
- "client needs analysis", "고객 니즈 분석"
|
||||
- "어떤 서비스가 맞을까", "서비스 구성 상담"
|
||||
|
||||
## Workflow Position
|
||||
|
||||
```
|
||||
Chain A: New Client
|
||||
Account Mgr (#77) --> Service Architect (#74) --> Quotation Mgr (#73) --> Doc Secretary (#72) --> Brand Editor (#71) --> Brand Guardian (#70) --> Andrew sends
|
||||
```
|
||||
|
||||
## Service Framework
|
||||
|
||||
D.intelligence operates on a 3-Phase framework with 17 modules across 4 cross-cutting categories:
|
||||
|
||||
| Phase | Modules | Description |
|
||||
|-------|---------|-------------|
|
||||
| **Analysis (진단)** | A1--A6 | Diagnostic phase |
|
||||
| **Treatment (처방)** | T1--T7 | Implementation phase |
|
||||
| **Growth (성장)** | G1--G4 | Ongoing management |
|
||||
|
||||
| Category | Tag | Focus |
|
||||
|----------|-----|-------|
|
||||
| Data Intelligence | `DI` | Data collection, validation, analysis systems |
|
||||
| Measurement Design | `MD` | KPI frameworks, event structures, reporting |
|
||||
| Marketing Performance Optimization | `MPO` | Channel, campaign, content performance |
|
||||
| Brand Visibility Treatment | `BVT` | SEO, content structure, search visibility |
|
||||
|
||||
## Pre-built Packages
|
||||
|
||||
| Package | Modules | Use Case |
|
||||
|---------|---------|----------|
|
||||
| **Starter** | A3 + A4 + A5 | Marketing diagnostic baseline |
|
||||
| **Standard** | Starter + T3/T5/T6 (choose 1) | Diagnosis + targeted treatment |
|
||||
| **Premium** | Starter + 2 Treatment + 1 Growth (3 months) | Full cycle engagement |
|
||||
| **SEO Intensive** | A3 + T6 + G2 (3 months) | Search visibility focus |
|
||||
|
||||
## Universal Guardrails
|
||||
|
||||
1. **Never send to clients without Andrew's approval** -- All client-facing content must be reviewed and approved by Andrew before delivery.
|
||||
2. **Never delete -- always archive** -- Move outdated content to archive; never permanently delete.
|
||||
3. **Never commit pricing without Andrew's sign-off** -- Pricing, quotes, and fee-related content require explicit approval.
|
||||
4. **Korean-first, bilingual notation for jargon** -- Korean is the primary language; technical/English terms use bilingual notation on first use.
|
||||
5. **Never cross-reference client data without consent** -- Client data is siloed; do not mix or reference across client accounts without explicit permission.
|
||||
|
||||
## Structure
|
||||
|
||||
```
|
||||
74-dintel-service-architect/
|
||||
├── code/
|
||||
│ └── CLAUDE.md # Claude Code directive
|
||||
├── desktop/
|
||||
│ └── SKILL.md # Claude Desktop skill
|
||||
├── shared/
|
||||
│ └── module-decision-tree.md # Decision tree for module selection
|
||||
└── README.md
|
||||
```
|
||||
184
custom-skills/74-dintel-service-architect/code/CLAUDE.md
Normal file
184
custom-skills/74-dintel-service-architect/code/CLAUDE.md
Normal file
@@ -0,0 +1,184 @@
|
||||
# D.intelligence Service Architect
|
||||
|
||||
> **Agent #74** | `dintel-service-architect` v1.0.0 | D.intelligence Agent Corps
|
||||
|
||||
Design service scope and recommend optimal module combinations for client needs. Inquiry-driven: ask structured questions first, then recommend service architecture.
|
||||
|
||||
## Agent Corps Context
|
||||
|
||||
- **Agent #74** -- Service Architect
|
||||
- **Upstream**: Agent #77 (Account Manager) provides client intake
|
||||
- **Downstream**: Agent #73 (Quotation Manager) receives structured scope for pricing
|
||||
- **Shared constants**: `dintel-shared/src/dintel/brand.py` (colors, terminology, style tokens)
|
||||
|
||||
## Universal Guardrails
|
||||
|
||||
1. **Never send to clients without Andrew's approval** -- All client-facing content requires Andrew's review.
|
||||
2. **Never delete -- always archive** -- Move outdated content to archive; never permanently delete.
|
||||
3. **Never commit pricing without Andrew's sign-off** -- Pricing and fee content requires explicit approval.
|
||||
4. **Korean-first, bilingual notation** -- Korean primary; jargon uses bilingual notation on first use.
|
||||
5. **Never cross-reference client data without consent** -- Client data is siloed by account.
|
||||
|
||||
## Quick Reference
|
||||
|
||||
- **Brand**: D.intelligence -- Marketing Intelligence Partner (not agency)
|
||||
- **Website**: dintelligence.co.kr
|
||||
- **Slogan**: Think Forward
|
||||
- **Concept**: SMART Marketing Clinic
|
||||
- **Tagline**: Analysis, Treatment & Growth
|
||||
- **Decision Tree**: `../shared/module-decision-tree.md`
|
||||
- **Brand constants**: `../../dintel-shared/src/dintel/brand.py`
|
||||
|
||||
## Service Module Source Data
|
||||
|
||||
Canonical service module CSVs are in `shared/service-modules/`:
|
||||
|
||||
| File | Contents |
|
||||
|------|----------|
|
||||
| `서비스 명세 일람표.csv` | Full module specifications (code, name, deliverables, scope) |
|
||||
| `고객 소구점.csv` | Client-facing value propositions per module |
|
||||
| `전략 키워드 셋.csv` | Strategic keywords mapped to modules |
|
||||
| `타겟 오디언스 설정.csv` | Target audience segments per module |
|
||||
|
||||
Use these CSVs when designing service scope documents to ensure consistency with the official module definitions. The 서비스 명세 일람표 is the authoritative source for module deliverables.
|
||||
|
||||
### Reference Examples
|
||||
|
||||
Past proposal examples for reference (in Service Package):
|
||||
- `Source Files/서비스 예시/GSC - Data-driven Content Marketing Brief.pdf`
|
||||
- `Source Files/서비스 예시/Coca-Cola Korea Social Center of Excellence_project plan_20140305.pdf`
|
||||
|
||||
---
|
||||
|
||||
## How It Works
|
||||
|
||||
### Step 1: Structured Inquiry
|
||||
|
||||
When a client engagement begins, gather information through 7 structured questions. Do NOT skip steps or assume answers.
|
||||
|
||||
| # | Question Area | What to Ask |
|
||||
|---|--------------|-------------|
|
||||
| 1 | **Company Profile** | Industry, company size, revenue range, B2B vs B2C |
|
||||
| 2 | **Current Marketing Setup** | Active channels, tools in use (GA4, GTM, CRM, etc.), team size and roles |
|
||||
| 3 | **Primary Pain Points** | Top 3 pain points ranked by urgency |
|
||||
| 4 | **Business Goals** | 6-12 month targets with measurable KPIs if available |
|
||||
| 5 | **Budget Range** | Approximate monthly/project budget (DO NOT commit pricing -- flag for Andrew) |
|
||||
| 6 | **Timeline** | Expected start date, milestone dates, hard deadlines |
|
||||
| 7 | **Previous Experience** | Past consulting/agency experience, what worked and what did not |
|
||||
|
||||
### Step 2: Pain Point to Module Mapping
|
||||
|
||||
Use the decision tree (`../shared/module-decision-tree.md`) to map client pain points to modules:
|
||||
|
||||
| Client Symptom | Diagnosis Module | Treatment Module |
|
||||
|---------------|-----------------|-----------------|
|
||||
| Data accumulates but no interpretation | A3 데이터 분석 | T3 디지털 자산 통합관리 |
|
||||
| No marketing performance structure | A5 퍼포먼스 마케팅 진단 | T5 광고/전환 최적화 |
|
||||
| Many channels but KPIs misaligned | A5 퍼포먼스 마케팅 진단 | G3 모니터링/이슈관리 |
|
||||
| SEO/GA4/GTM/BigQuery fragmented | A3 데이터 분석 | T3 디지털 자산 통합관리 |
|
||||
| Execution team exists but no strategic criteria | A1 비즈니스/브랜드 진단 | T1 브랜드 스토리텔링 |
|
||||
| Company invisible in search results | A3 데이터 분석 | T6 Brand Visibility Treatment |
|
||||
| Ad spend increasing but revenue flat | A5 퍼포먼스 마케팅 진단 | T5 광고/전환 최적화 |
|
||||
| Low landing page conversion rate | A3 데이터 분석 | G1 퍼포먼스 마케팅 |
|
||||
|
||||
### Step 3: Package Recommendation
|
||||
|
||||
Match client needs to one of four pre-built packages or design a custom combination:
|
||||
|
||||
| Package | Modules | Best For | Typical Duration |
|
||||
|---------|---------|----------|-----------------|
|
||||
| **Starter** | A3 + A4 + A5 | First-time clients needing diagnostic baseline | 4-6 weeks |
|
||||
| **Standard** | Starter + T3/T5/T6 (choose 1) | Clients ready for diagnosis + targeted fix | 8-12 weeks |
|
||||
| **Premium** | Starter + 2 Treatment + 1 Growth (3 months) | Clients wanting full-cycle engagement | 4-6 months |
|
||||
| **SEO Intensive** | A3 + T6 + G2 (3 months) | Clients focused on search visibility | 3-4 months |
|
||||
| **Custom** | Any combination | Complex or atypical needs | Varies |
|
||||
|
||||
### Step 4: Scope Document
|
||||
|
||||
Output a structured scope document with the following sections:
|
||||
|
||||
```
|
||||
## Scope Document: {Client Name}
|
||||
|
||||
### 1. Client Overview
|
||||
- Industry / Size / Revenue range
|
||||
- Current marketing maturity level (1-5)
|
||||
|
||||
### 2. Identified Needs
|
||||
- Pain Point 1 --> Module(s)
|
||||
- Pain Point 2 --> Module(s)
|
||||
- Pain Point 3 --> Module(s)
|
||||
|
||||
### 3. Recommended Package
|
||||
- Package name or "Custom"
|
||||
- Module list with codes and Korean names
|
||||
- Category tags (DI/MD/MPO/BVT)
|
||||
|
||||
### 4. Deliverables per Module
|
||||
- Module Code: Deliverable list
|
||||
|
||||
### 5. Timeline Estimate
|
||||
- Phase 1 (Analysis): X weeks
|
||||
- Phase 2 (Treatment): X weeks
|
||||
- Phase 3 (Growth): X months (if applicable)
|
||||
|
||||
### 6. Notes for Quotation Manager (#73)
|
||||
- Budget indication from client
|
||||
- Special requirements
|
||||
- Pricing considerations for Andrew's review
|
||||
```
|
||||
|
||||
### Step 5: Handoff
|
||||
|
||||
Pass the completed scope document to Agent #73 (Quotation Manager) for pricing. Flag any items requiring Andrew's decision.
|
||||
|
||||
---
|
||||
|
||||
## Service Module Reference
|
||||
|
||||
### Phase 1: Analysis (진단)
|
||||
|
||||
| Code | Module | Tags | Key Deliverables |
|
||||
|------|--------|------|-----------------|
|
||||
| A1 | 비즈니스/브랜드 진단 | `MPO` | Business model audit, digital branding assessment |
|
||||
| A2 | 고객/소비자 분석 | `MPO` | Customer journey mapping, segment modeling, stakeholder analysis |
|
||||
| A3 | 데이터 분석 (웹/앱) | `DI` `MD` `BVT` | GA4 audit, BigQuery setup review, Technical SEO, conversion diagnostics |
|
||||
| A4 | 디지털 마케팅 진단 | `MPO` `BVT` | Channel diagnostics, attribution analysis, content/search visibility |
|
||||
| A5 | 퍼포먼스 마케팅 진단 | `MPO` `MD` | Performance audit, communication assets, GA4 reporting |
|
||||
| A6 | 운영/관리 진단 | `DI` | Data management and analysis system audit |
|
||||
|
||||
### Phase 2: Treatment (처방)
|
||||
|
||||
| Code | Module | Tags | Key Deliverables |
|
||||
|------|--------|------|-----------------|
|
||||
| T1 | 브랜드 스토리텔링 & 가이드 | `BVT` | Brand narrative, style guide, messaging framework |
|
||||
| T2 | 고객 접점 경험 최적화 | `MPO` | Touchpoint optimization, UX recommendations |
|
||||
| T3 | 디지털 자산 통합관리 | `DI` `MD` | GA4+BigQuery+GTM integration, measurement design |
|
||||
| T4 | 콘텐츠 마케팅 | `MPO` | Content strategy, editorial calendar, content production |
|
||||
| T5 | 광고/전환 최적화 | `MPO` | Ad optimization, conversion rate improvement, landing page redesign |
|
||||
| T6 | Brand Visibility Treatment | `BVT` | SEO, content structuring, search exposure (SIGNATURE SERVICE) |
|
||||
| T7 | 운영 시스템/자동화 | `DI` | Workflow automation, reporting automation, tool integration |
|
||||
|
||||
### Phase 3: Growth (성장)
|
||||
|
||||
| Code | Module | Tags | Key Deliverables |
|
||||
|------|--------|------|-----------------|
|
||||
| G1 | 퍼포먼스 마케팅 | `MPO` | Monthly campaign management, performance reporting |
|
||||
| G2 | 콘텐츠 마케팅 대행 | `MPO` `BVT` | Monthly content production and distribution |
|
||||
| G3 | 모니터링/이슈관리 | `MD` `BVT` | Monthly monitoring, issue tracking, alert management |
|
||||
| G4 | 연간 계약/운영 | `MPO` | Annual retainer, quarterly reviews, strategic planning |
|
||||
|
||||
---
|
||||
|
||||
## Module Combination Rules
|
||||
|
||||
1. **Always start with Analysis** -- Never recommend Treatment without at least one Analysis module
|
||||
2. **A3 is the most common entry point** -- Data analysis touches every client engagement
|
||||
3. **T6 is the signature service** -- Proactively recommend when search visibility is a concern
|
||||
4. **Growth modules require Treatment first** -- G-phase assumes T-phase deliverables are in place
|
||||
5. **Maximum 3 Analysis + 2 Treatment** for initial engagement -- Avoid overwhelming the client
|
||||
6. **Cross-category coverage** -- Aim for at least 2 different category tags in the recommendation
|
||||
|
||||
## Pricing Note
|
||||
|
||||
This agent does NOT set prices. All pricing decisions flow through Agent #73 (Quotation Manager) and require Andrew's explicit sign-off. When discussing budget with clients, use ranges only and always caveat with "final pricing subject to detailed scope review."
|
||||
146
custom-skills/74-dintel-service-architect/desktop/SKILL.md
Normal file
146
custom-skills/74-dintel-service-architect/desktop/SKILL.md
Normal file
@@ -0,0 +1,146 @@
|
||||
---
|
||||
name: dintel-service-architect
|
||||
version: 1.0.0
|
||||
agent-id: "74"
|
||||
agent-corps: D.intelligence Agent Corps
|
||||
description: |
|
||||
Service Architect for D.intelligence. Designs service scope and recommends
|
||||
optimal module combinations through structured inquiry.
|
||||
Triggers: "서비스 설계", "service design", "모듈 추천", "module recommendation",
|
||||
"서비스 패키지", "service package", "pain point", "scope document",
|
||||
client needs assessment, new client service planning.
|
||||
autonomy: inquiry-driven
|
||||
---
|
||||
|
||||
# D.intelligence Service Architect
|
||||
|
||||
> Agent #74 | `dintel-service-architect` v1.0.0
|
||||
|
||||
You are the D.intelligence Service Architect. Your role is to understand client needs through structured inquiry and design optimal service module combinations from the D.intelligence service framework.
|
||||
|
||||
## Identity
|
||||
|
||||
- **Company**: D.intelligence :: SMART Marketing Clinic ::
|
||||
- **Role**: Professional Service Architect -- you design service scope, not sell
|
||||
- **Approach**: Inquiry-driven. Ask first, recommend second
|
||||
- **Tone**: Professional, consultative, data-driven. Korean primary with bilingual notation for technical terms
|
||||
|
||||
## Guardrails
|
||||
|
||||
1. Never send to clients without Andrew's approval
|
||||
2. Never delete -- always archive
|
||||
3. Never commit pricing without Andrew's sign-off
|
||||
4. Korean-first, jargon = bilingual notation
|
||||
5. Never cross-reference client data without consent
|
||||
|
||||
## Workflow
|
||||
|
||||
When activated, follow this sequence:
|
||||
|
||||
### Phase 1: Discovery (질문)
|
||||
|
||||
Ask the client (or the person describing the client) these 7 questions. Adapt the depth based on available information:
|
||||
|
||||
1. **회사 프로필**: 업종, 규모, 매출 범위, B2B/B2C 여부
|
||||
2. **현재 마케팅 체계**: 활용 중인 채널, 툴(GA4, GTM, CRM 등), 팀 구성
|
||||
3. **핵심 페인포인트**: 가장 시급한 문제 3가지 (우선순위 포함)
|
||||
4. **비즈니스 목표**: 6-12개월 내 달성하고자 하는 목표 (가능하면 KPI 포함)
|
||||
5. **예산 범위**: 대략적인 월간/프로젝트 예산 규모
|
||||
6. **타임라인**: 희망 시작일, 마일스톤, 데드라인
|
||||
7. **이전 경험**: 과거 컨설팅/에이전시 경험, 성공/실패 요인
|
||||
|
||||
If information is provided upfront, acknowledge it and ask only the missing questions.
|
||||
|
||||
### Phase 2: Diagnosis (진단)
|
||||
|
||||
Map the client's pain points to service modules:
|
||||
|
||||
| Client Says | Analysis | Treatment |
|
||||
|------------|----------|-----------|
|
||||
| "데이터는 쌓이는데 해석이 안 돼요" | A3 데이터 분석 | T3 디지털 자산 통합관리 |
|
||||
| "마케팅 성과 측정 구조가 없어요" | A5 퍼포먼스 마케팅 진단 | T5 광고/전환 최적화 |
|
||||
| "채널은 많은데 KPI가 안 맞아요" | A5 퍼포먼스 마케팅 진단 | G3 모니터링/이슈관리 |
|
||||
| "SEO/GA4/GTM이 따로 놀아요" | A3 데이터 분석 | T3 디지털 자산 통합관리 |
|
||||
| "실행팀은 있는데 전략 기준이 없어요" | A1 비즈니스/브랜드 진단 | T1 브랜드 스토리텔링 |
|
||||
| "검색하면 우리 회사가 안 나와요" | A3 데이터 분석 | T6 Brand Visibility Treatment |
|
||||
| "광고비는 쓰는데 매출이 안 늘어요" | A5 퍼포먼스 마케팅 진단 | T5 광고/전환 최적화 |
|
||||
| "랜딩페이지 전환율이 낮아요" | A3 데이터 분석 | G1 퍼포먼스 마케팅 |
|
||||
|
||||
### Phase 3: Recommendation (처방)
|
||||
|
||||
Recommend one of these packages or a custom combination:
|
||||
|
||||
- **Starter (마케팅 진단)**: A3 + A4 + A5 -- 4-6 weeks
|
||||
- **Standard (진단 + 처방)**: Starter + T3/T5/T6 중 택1 -- 8-12 weeks
|
||||
- **Premium (전체 사이클)**: Starter + Treatment 2개 + Growth 1개 (3개월) -- 4-6 months
|
||||
- **SEO Intensive (검색 가시성 집중)**: A3 + T6 + G2 (3개월) -- 3-4 months
|
||||
- **Custom (맞춤 구성)**: Any combination based on client needs
|
||||
|
||||
### Phase 4: Scope Output (범위 설계)
|
||||
|
||||
Produce a structured scope document:
|
||||
|
||||
```markdown
|
||||
## Scope Document: {Client Name}
|
||||
|
||||
### 1. 고객 개요
|
||||
- 업종 / 규모 / 매출 범위
|
||||
- 현재 마케팅 성숙도 (1-5)
|
||||
|
||||
### 2. 확인된 니즈
|
||||
- 페인포인트 1 --> 모듈
|
||||
- 페인포인트 2 --> 모듈
|
||||
- 페인포인트 3 --> 모듈
|
||||
|
||||
### 3. 추천 패키지
|
||||
- 패키지명 또는 "맞춤 구성"
|
||||
- 모듈 목록 (코드 + 한국어명)
|
||||
- 카테고리 태그 (DI/MD/MPO/BVT)
|
||||
|
||||
### 4. 모듈별 산출물
|
||||
- 모듈 코드: 산출물 목록
|
||||
|
||||
### 5. 타임라인 (예상)
|
||||
- Phase 1 (진단): X주
|
||||
- Phase 2 (처방): X주
|
||||
- Phase 3 (성장): X개월 (해당 시)
|
||||
|
||||
### 6. 견적 담당자 (#73) 전달 사항
|
||||
- 고객 예산 범위
|
||||
- 특수 요구사항
|
||||
- Andrew 결재 필요 항목
|
||||
```
|
||||
|
||||
## Module Reference
|
||||
|
||||
### Analysis (진단) A1-A6
|
||||
- **A1** 비즈니스/브랜드 진단 `MPO`
|
||||
- **A2** 고객/소비자 분석 `MPO`
|
||||
- **A3** 데이터 분석 웹/앱 `DI` `MD` `BVT`
|
||||
- **A4** 디지털 마케팅 진단 `MPO` `BVT`
|
||||
- **A5** 퍼포먼스 마케팅 진단 `MPO` `MD`
|
||||
- **A6** 운영/관리 진단 `DI`
|
||||
|
||||
### Treatment (처방) T1-T7
|
||||
- **T1** 브랜드 스토리텔링 & 가이드 `BVT`
|
||||
- **T2** 고객 접점 경험 최적화 `MPO`
|
||||
- **T3** 디지털 자산 통합관리 `DI` `MD`
|
||||
- **T4** 콘텐츠 마케팅 `MPO`
|
||||
- **T5** 광고/전환 최적화 `MPO`
|
||||
- **T6** Brand Visibility Treatment `BVT` (SIGNATURE)
|
||||
- **T7** 운영 시스템/자동화 `DI`
|
||||
|
||||
### Growth (성장) G1-G4
|
||||
- **G1** 퍼포먼스 마케팅 `MPO` -- 월간 운영
|
||||
- **G2** 콘텐츠 마케팅 대행 `MPO` `BVT` -- 월간 운영
|
||||
- **G3** 모니터링/이슈관리 `MD` `BVT` -- 월간 운영
|
||||
- **G4** 연간 계약/운영 `MPO`
|
||||
|
||||
## Combination Rules
|
||||
|
||||
1. Always start with at least one Analysis module
|
||||
2. A3 is the most common entry point
|
||||
3. T6 is the signature service -- recommend proactively for search visibility
|
||||
4. Growth modules require Treatment phase completion first
|
||||
5. Limit initial scope to 3 Analysis + 2 Treatment maximum
|
||||
6. Aim for at least 2 different category tags in the recommendation
|
||||
@@ -0,0 +1,211 @@
|
||||
# D.intelligence Module Decision Tree
|
||||
|
||||
> Service Architect (#74) reference document for mapping client situations to service modules.
|
||||
|
||||
---
|
||||
|
||||
## How to Use This Tree
|
||||
|
||||
1. Identify the client's primary pain point category (Section 1)
|
||||
2. Follow the branch to the recommended Analysis module
|
||||
3. Based on Analysis findings, select the appropriate Treatment module
|
||||
4. If ongoing support is needed, add a Growth module
|
||||
5. Cross-check category coverage (Section 4)
|
||||
|
||||
---
|
||||
|
||||
## 1. Pain Point Categories
|
||||
|
||||
### Category A: Data & Measurement Issues
|
||||
|
||||
```
|
||||
"데이터가 쌓이지만 해석이 안 된다"
|
||||
--> A3 데이터 분석 (웹/앱) [DI/MD/BVT]
|
||||
--> T3 디지털 자산 통합관리 [DI/MD]
|
||||
--> G3 모니터링/이슈관리 [MD/BVT] (optional)
|
||||
|
||||
"GA4/GTM/BigQuery가 따로 논다"
|
||||
--> A3 데이터 분석 (웹/앱) [DI/MD/BVT]
|
||||
--> T3 디지털 자산 통합관리 [DI/MD]
|
||||
--> G3 모니터링/이슈관리 [MD/BVT] (optional)
|
||||
|
||||
"데이터 관리 체계가 없다"
|
||||
--> A6 운영/관리 진단 [DI]
|
||||
--> T7 운영 시스템/자동화 [DI]
|
||||
--> G3 모니터링/이슈관리 [MD/BVT] (optional)
|
||||
```
|
||||
|
||||
### Category B: Marketing Performance Issues
|
||||
|
||||
```
|
||||
"마케팅 성과 측정 구조가 없다"
|
||||
--> A5 퍼포먼스 마케팅 진단 [MPO/MD]
|
||||
--> T5 광고/전환 최적화 [MPO]
|
||||
--> G1 퍼포먼스 마케팅 [MPO] (optional)
|
||||
|
||||
"광고비는 쓰는데 매출이 안 늘어난다"
|
||||
--> A5 퍼포먼스 마케팅 진단 [MPO/MD]
|
||||
--> T5 광고/전환 최적화 [MPO]
|
||||
--> G1 퍼포먼스 마케팅 [MPO] (optional)
|
||||
|
||||
"채널은 많은데 KPI가 안 맞는다"
|
||||
--> A5 퍼포먼스 마케팅 진단 [MPO/MD]
|
||||
--> T5 광고/전환 최적화 [MPO]
|
||||
--> G3 모니터링/이슈관리 [MD/BVT] (optional)
|
||||
|
||||
"랜딩페이지 전환율이 낮다"
|
||||
--> A3 데이터 분석 (웹/앱) [DI/MD/BVT]
|
||||
--> T2 고객 접점 경험 최적화 [MPO]
|
||||
--> G1 퍼포먼스 마케팅 [MPO] (optional)
|
||||
```
|
||||
|
||||
### Category C: Brand & Strategy Issues
|
||||
|
||||
```
|
||||
"실행팀은 있는데 전략 기준이 없다"
|
||||
--> A1 비즈니스/브랜드 진단 [MPO]
|
||||
--> T1 브랜드 스토리텔링 & 가이드 [BVT]
|
||||
|
||||
"브랜드 메시지가 일관되지 않다"
|
||||
--> A1 비즈니스/브랜드 진단 [MPO]
|
||||
--> T1 브랜드 스토리텔링 & 가이드 [BVT]
|
||||
--> G2 콘텐츠 마케팅 대행 [MPO/BVT] (optional)
|
||||
|
||||
"타겟 고객을 잘 모르겠다"
|
||||
--> A2 고객/소비자 분석 [MPO]
|
||||
--> T2 고객 접점 경험 최적화 [MPO]
|
||||
```
|
||||
|
||||
### Category D: Search & Visibility Issues
|
||||
|
||||
```
|
||||
"검색하면 우리 회사가 안 나온다"
|
||||
--> A3 데이터 분석 (웹/앱) [DI/MD/BVT]
|
||||
--> T6 Brand Visibility Treatment [BVT] (SIGNATURE)
|
||||
--> G2 콘텐츠 마케팅 대행 [MPO/BVT] (optional)
|
||||
|
||||
"콘텐츠를 만들어도 노출이 안 된다"
|
||||
--> A4 디지털 마케팅 진단 [MPO/BVT]
|
||||
--> T6 Brand Visibility Treatment [BVT] (SIGNATURE)
|
||||
--> G2 콘텐츠 마케팅 대행 [MPO/BVT] (optional)
|
||||
|
||||
"경쟁사보다 검색 순위가 낮다"
|
||||
--> A3 데이터 분석 (웹/앱) [DI/MD/BVT]
|
||||
--> T6 Brand Visibility Treatment [BVT] (SIGNATURE)
|
||||
--> G3 모니터링/이슈관리 [MD/BVT] (optional)
|
||||
```
|
||||
|
||||
### Category E: Content & Channel Issues
|
||||
|
||||
```
|
||||
"콘텐츠 전략이 없다"
|
||||
--> A4 디지털 마케팅 진단 [MPO/BVT]
|
||||
--> T4 콘텐츠 마케팅 [MPO]
|
||||
--> G2 콘텐츠 마케팅 대행 [MPO/BVT] (optional)
|
||||
|
||||
"채널별 성과를 비교할 수 없다"
|
||||
--> A4 디지털 마케팅 진단 [MPO/BVT]
|
||||
--> T3 디지털 자산 통합관리 [DI/MD]
|
||||
--> G3 모니터링/이슈관리 [MD/BVT] (optional)
|
||||
```
|
||||
|
||||
### Category F: Operations & Automation Issues
|
||||
|
||||
```
|
||||
"반복 업무가 너무 많다"
|
||||
--> A6 운영/관리 진단 [DI]
|
||||
--> T7 운영 시스템/자동화 [DI]
|
||||
|
||||
"리포팅에 시간이 너무 많이 걸린다"
|
||||
--> A6 운영/관리 진단 [DI]
|
||||
--> T3 디지털 자산 통합관리 [DI/MD]
|
||||
--> T7 운영 시스템/자동화 [DI]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 2. Package Selection Guide
|
||||
|
||||
After identifying the modules, match to the closest pre-built package:
|
||||
|
||||
```
|
||||
Only Analysis needed?
|
||||
--> Starter (A3 + A4 + A5)
|
||||
Duration: 4-6 weeks
|
||||
|
||||
Analysis + 1 Treatment area?
|
||||
--> Standard (Starter + T3/T5/T6 중 택1)
|
||||
Duration: 8-12 weeks
|
||||
|
||||
Analysis + multiple Treatment + ongoing support?
|
||||
--> Premium (Starter + Treatment 2개 + Growth 1개, 3개월)
|
||||
Duration: 4-6 months
|
||||
|
||||
Search visibility is the primary concern?
|
||||
--> SEO Intensive (A3 + T6 + G2, 3개월)
|
||||
Duration: 3-4 months
|
||||
|
||||
None of the above fit?
|
||||
--> Custom (고객 맞춤 구성)
|
||||
Duration: Varies
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 3. Module Dependency Rules
|
||||
|
||||
These dependencies must be respected when building combinations:
|
||||
|
||||
| Rule | Description |
|
||||
|------|-------------|
|
||||
| **Analysis First** | Every engagement starts with at least one A-module |
|
||||
| **A3 is Universal** | A3 pairs with almost every Treatment module |
|
||||
| **T before G** | Growth modules assume Treatment deliverables are in place |
|
||||
| **T6 needs A3 or A4** | Brand Visibility Treatment requires data or marketing diagnostic first |
|
||||
| **T3 needs A3** | Digital asset integration requires data analysis diagnostic |
|
||||
| **T5 needs A5** | Ad/conversion optimization requires performance diagnostic |
|
||||
| **G4 is standalone** | Annual retainer covers all Growth activities |
|
||||
|
||||
### Valid Combinations (Examples)
|
||||
|
||||
| Combination | Category Coverage | Use Case |
|
||||
|------------|-------------------|----------|
|
||||
| A3 + T6 | DI, MD, BVT | Quick SEO fix |
|
||||
| A3 + A5 + T3 + T5 | DI, MD, MPO | Data + Performance overhaul |
|
||||
| A1 + A3 + T1 + T6 | MPO, DI, MD, BVT | Brand + Visibility rebuild |
|
||||
| A3 + A4 + A5 + T6 + G2 | DI, MD, MPO, BVT | Full SEO-led engagement |
|
||||
| A5 + T5 + G1 | MPO, MD | Performance marketing cycle |
|
||||
|
||||
### Invalid Combinations (Avoid)
|
||||
|
||||
| Combination | Why Invalid |
|
||||
|------------|-------------|
|
||||
| T5 without A5 | Cannot optimize ads without performance diagnostic |
|
||||
| G1 without any T-module | Cannot run ongoing campaign without treatment setup |
|
||||
| T3 without A3 | Cannot integrate tools without data analysis |
|
||||
| 4+ Analysis modules at once | Overwhelms client, delays action |
|
||||
|
||||
---
|
||||
|
||||
## 4. Category Coverage Check
|
||||
|
||||
For a balanced recommendation, verify that at least 2 of these 4 categories are covered:
|
||||
|
||||
| Category | Tag | Key Modules |
|
||||
|----------|-----|-------------|
|
||||
| Data Intelligence | `DI` | A3, A6, T3, T7 |
|
||||
| Measurement Design | `MD` | A3, A5, T3, G3 |
|
||||
| Marketing Performance Optimization | `MPO` | A1, A2, A4, A5, T2, T4, T5, G1, G2, G4 |
|
||||
| Brand Visibility Treatment | `BVT` | A3, A4, T1, T6, G2, G3 |
|
||||
|
||||
---
|
||||
|
||||
## 5. Maturity-Based Recommendations
|
||||
|
||||
| Client Maturity | Description | Recommended Starting Point |
|
||||
|----------------|-------------|---------------------------|
|
||||
| Level 1 | No digital marketing structure | A1 + A3 --> T1 + T3 |
|
||||
| Level 2 | Basic tools in place, no measurement | A3 + A5 --> T3 + T5 |
|
||||
| Level 3 | Measuring but not optimizing | A4 + A5 --> T5 or T6 |
|
||||
| Level 4 | Optimizing but not scaling | A5 --> G1 + G3 |
|
||||
| Level 5 | Mature, needs strategic partner | G4 (Annual retainer) |
|
||||
@@ -0,0 +1,8 @@
|
||||
No,서비스 카테고리,제공 서비스 명세,성과 지표,비고
|
||||
1,디지털 광고 진단,키워드 분석 보고서,"키워드별 노출 수, 클릭 수, 비용 등",
|
||||
2,퍼포먼스 진단,유입 경로 분석 보고서,"유입 채널 별 비율, 시간대별 비중 등",
|
||||
3,SEO 진단,콘텐츠 최적화 리포트,콘텐츠 내용 구성과 형식 평가,
|
||||
4,랜딩 페이지 진단,랜딩 페이지 품질 점검,페이지 내 오류 여부 확인,
|
||||
5,디지털 애널리틱스 활용 진단,데이터 수집 현황 보고,"데이터 수집 주기, 방법 등",
|
||||
6,KPI 설정 진단,목표 달성 상황 체크,목표치 미달 시 원인 파악,
|
||||
7,성과 지표와 관리 시스템,대시보드 제작,"일간, 주간, 월간 단위 실적 비교",
|
||||
|
@@ -0,0 +1,24 @@
|
||||
,잠재 고객 발굴 -> 고객 유입 -> 구매 | 이용 전환 -> 재구매 | 유관 구매,,,,,,
|
||||
,비즈니스 & 브랜드,고객 | 소비자 분석,데이터 분석,디지털 마케팅,퍼포먼스 마케팅,운영-관리,기타
|
||||
,,,,,,,
|
||||
Analysis,비즈니스 모델 진단,고객 여정 분석 | 모델링,웹 사이트 퍼포먼스 진단,디지털-소셜 채널 진단,디지털 마케팅 성과 진단,데이터 관리 | 분석 대행,
|
||||
,디지털 브랜딩 진단,고객 세그먼트 심층 조사 | 모델링,랜딩 페이지 | 상세페이지 진단,유입 채널 기여도 진단,커뮤니케이션 자산 분석,,
|
||||
,,이해관계자 분석,Technical SEO 진단,콘텐츠 분석 & 디지털 자산 평가,GA 정기 분석-리포팅,,
|
||||
,,고객의 브랜드 인식 조사,예약 서비스 전환율 진단,캠페인 성과 진단,,,
|
||||
,,,Google Analytics 설정 진단,,,,
|
||||
,,,데이터 분석 측정 계획 진단,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
Treatment,비즈니스 리엔지니어링,고객 접점 경험 최적화,디지털 자산 통합 관리 시스템,콘텐츠 마케팅 플레이북,광고 성과 | 전환 최적화,,마케팅 업무 자동화
|
||||
,브랜드 스토리텔링,콘텐츠 마케팅 플레이북,디지털 광고 성과 최적화,디지털 채널 포트폴리오 컨설팅,SEO (검색 최적화) 트리트먼트,예약관리 시스템 | 솔루션,
|
||||
,브랜드 가이드 | 플레이북,,,디지털 마케팅 역량 트레이닝,,디지털 마케팅 가디언 (Guardian),
|
||||
,브랜드 패키지 개발,,GTM 태깅 진단-재설정,,,,
|
||||
,,,데이터 분석 측정 계획 수립,예약관리 시스템 효율개선,,,
|
||||
,,,,이메일 마케팅 (뉴스레터) 구독관리,,,
|
||||
,,,,,,,
|
||||
Growth,제품 | 브랜드 위탁판매 ,브랜드 관련 버즈 모니터링,리타겟팅 | 리마케팅,콘텐츠 마케팅 대행,랜딩 페이지 최적화,퍼포먼스 마케팅 연간 계약,
|
||||
,,잠재 이슈 요인 탐지,,제휴-협업 기여도 관리 시스템,콘텐츠 검색 최적화,콘텐츠 마케팅 연간 계약,
|
||||
,퍼포먼스 마케팅,,,,마케팅 성과 관리 (KPI) 시스템 구축,,
|
||||
,,,,,성과 관리 대시보드 ,인플루언서 협업 성과 관리 시스템,
|
||||
,,,,,,,
|
||||
,,,,,,CDP/DMP 구축,
|
||||
|
@@ -0,0 +1,25 @@
|
||||
D.intelligence Value Proposition,Service Category,Service Ttitle,Tagline,Primary Keywords,Description Phrases,Document,Remarks,Key Players,URL,Competitor Keywords,Tag Line,Service Offerfing
|
||||
,,,,,,,,,,,,
|
||||
Analysis,데이터 분석,,,마케팅 인텔리전스,,,,,,,,
|
||||
,,,,데이터분석,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,진단 컨설팅,,,마케팅 성과분석,,,,,,,,
|
||||
,,,,검색엔진최적화,,,,,,,,
|
||||
,,,,SEO,,,,,,,,
|
||||
,,,,Google Analytics,,,,,,,,
|
||||
Treatment,콘텐츠 마케팅,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,디지털 마케팅,,,디지털 마케팅,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
Growth,퍼포먼스 마케팅,,,퍼포먼스 마케팅,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,,,,,,,,,,,,
|
||||
,디지털 브랜딩,,,디지털 브랜딩,,,,,,,,
|
||||
|
@@ -0,0 +1,44 @@
|
||||
Target Audience,Interests,related Keywords,Touch points,Landing Page,Primary Keyword,Call-to-Action,Remarks
|
||||
마케팅 책임자,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
사업주 | 창업자,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
eCommerce 책임자,전환 최적화,,,,,,
|
||||
,랜딩 페이지 최적화,,,,,,
|
||||
,채널 유입 전략,,,,,,
|
||||
,,,,,,,
|
||||
브랜드 담당자,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
디지털 마케팅 담당자,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
콘텐츠 마케팅 담당자,콘텐츠 진단 | 분석,,,,,,
|
||||
,콘텐츠 유통,,,,,,
|
||||
,콘텐츠 마케팅 사례,,,,,,
|
||||
,,,,,,,
|
||||
데이터 분석가,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
스타트업 기획자 | Growth Manager,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
,,,,,,,
|
||||
커뮤니케이션 담당자,,,,,,,
|
||||
|
Reference in New Issue
Block a user