feat: Add OurDigital custom skills package (10 skills)

Complete implementation of OurDigital skills with dual-platform support
(Claude Desktop + Claude Code) following standardized structure.

Skills created:
- 01-ourdigital-brand-guide: Brand reference & style guidelines
- 02-ourdigital-blog: Korean blog drafts (blog.ourdigital.org)
- 03-ourdigital-journal: English essays (journal.ourdigital.org)
- 04-ourdigital-research: Research prompts & workflows
- 05-ourdigital-document: Notion-to-presentation pipeline
- 06-ourdigital-designer: Visual/image prompt generation
- 07-ourdigital-ad-manager: Ad copywriting & keyword research
- 08-ourdigital-trainer: Training materials & workshop planning
- 09-ourdigital-backoffice: Quotes, proposals, cost analysis
- 10-ourdigital-skill-creator: Meta skill for creating new skills

Features:
- YAML frontmatter with "ourdigital" or "our" prefix triggers
- Standardized directory structure (code/, desktop/, shared/, docs/)
- Shared environment setup (_ourdigital-shared/)
- Comprehensive reference documentation
- Cross-skill integration support

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-31 16:50:17 +07:00
parent 7d20abe811
commit 0bc24d00b9
169 changed files with 9970 additions and 741 deletions

View File

@@ -0,0 +1,86 @@
# OurDigital Backoffice
Business document creation for OurDigital consulting services.
## Purpose
Generate professional business documents:
- Quotes and estimates (견적서)
- Service proposals (제안서)
- Contract drafts (계약서 초안)
- Cost-benefit analysis (비용 분석)
## Activation
Only activates with "ourdigital" keyword:
- "ourdigital 견적서 작성해줘"
- "ourdigital proposal for [client]"
- "ourdigital cost analysis"
## Important Notice
⚠️ **Legal Disclaimer**: Contract drafts require professional legal review before use.
## Structure
```
09-ourdigital-backoffice/
├── code/
│ ├── SKILL.md
│ └── scripts/
│ ├── generate_quote.py
│ ├── create_proposal.py
│ ├── cost_analysis.py
│ └── export_document.py
├── desktop/
│ ├── SKILL.md
│ └── skill.yaml
├── shared/
│ ├── references/
│ │ └── pricing-guide.md
│ └── templates/
│ ├── quote-template.md
│ ├── proposal-template.md
│ └── contract-template.md
├── docs/
│ └── CHANGELOG.md
└── README.md
```
## Document Types
| Type | Purpose | Turnaround |
|------|---------|------------|
| Quote | Pricing summary | Immediate |
| Proposal | Detailed offering | 1-2 days |
| Contract | Legal agreement | Requires review |
| Cost Analysis | ROI justification | 1 day |
## Service Catalog
### SEO Services
- Technical Audit: 300-500만원
- Monthly SEO: 150-300만원/월
- Local SEO: 100-200만원/월
### Data & Analytics
- GTM Setup: 200-400만원
- GA4 Implementation: 150-300만원
- Dashboard Development: 300-600만원
### Consulting & Training
- Brand Consulting: 500-1000만원
- Marketing Strategy: 300-700만원
- Workshop: 100-200만원/회
## Integration
Works with:
- `01-ourdigital-brand-guide` - Document styling
- `05-ourdigital-document` - Presentation format
- Google Docs, Word export
## Version
- Current: 1.0.0
- Author: OurDigital

View File

@@ -0,0 +1,167 @@
---
name: ourdigital-backoffice
description: |
Business document creation for OurDigital consulting services.
Activated with "ourdigital" keyword.
Triggers:
- "ourdigital quote", "ourdigital 견적서"
- "ourdigital proposal", "ourdigital 제안서"
Features:
- Template-based document generation
- Cost calculation automation
- Document export
version: "1.0"
author: OurDigital
environment: Code
---
# OurDigital Backoffice (Code)
Automated business document generation with script support.
## Activation
Only with "ourdigital" keyword:
- "ourdigital 견적서 [서비스]"
- "ourdigital proposal [client]"
## Quick Start
```bash
# Generate quote
python code/scripts/generate_quote.py \
--client "ABC Company" \
--services "seo_audit,gtm_setup" \
--output quote.md
# Create proposal
python code/scripts/create_proposal.py \
--client "XYZ Corp" \
--project "마케팅 자동화" \
--duration "3months"
# Cost analysis
python code/scripts/cost_analysis.py \
--project "GTM 구축" \
--investment 5000000 \
--period 12months
```
## Scripts
| Script | Purpose |
|--------|---------|
| `generate_quote.py` | Create quotes with pricing |
| `create_proposal.py` | Build service proposals |
| `cost_analysis.py` | ROI and cost-benefit |
| `export_document.py` | Export to PDF/DOCX |
## Quote Generation
```bash
# Single service
python code/scripts/generate_quote.py \
--client "Client Name" \
--services "seo_audit" \
--output quote.md
# Multiple services
python code/scripts/generate_quote.py \
--client "Client Name" \
--services "seo_audit,gtm_setup,dashboard" \
--discount 10
```
## Service Codes
| Code | Service | Base Price |
|------|---------|------------|
| `seo_audit` | SEO Technical Audit | 4,000,000 |
| `seo_monthly` | SEO Monthly | 2,000,000/월 |
| `gtm_setup` | GTM Setup | 3,000,000 |
| `ga4_setup` | GA4 Implementation | 2,000,000 |
| `dashboard` | Dashboard Dev | 4,000,000 |
| `consulting` | Consulting Day | 1,500,000/일 |
| `workshop` | Workshop | 1,500,000/회 |
## Proposal Generation
```bash
# Standard proposal
python code/scripts/create_proposal.py \
--client "XYZ Corp" \
--project "데이터 분석 환경 구축" \
--duration "2months" \
--services "gtm_setup,ga4_setup,dashboard"
# With custom sections
python code/scripts/create_proposal.py \
--client "ABC Company" \
--template custom \
--input requirements.json
```
## Cost Analysis
```bash
# ROI calculation
python code/scripts/cost_analysis.py \
--project "마케팅 자동화" \
--investment 10000000 \
--annual_benefit 5000000 \
--period 36months
# Comparison analysis
python code/scripts/cost_analysis.py \
--compare "inhouse,outsource,hybrid" \
--period 12months
```
## Output Formats
```bash
# Markdown (default)
python code/scripts/generate_quote.py --format markdown
# PDF export
python code/scripts/export_document.py \
--input quote.md \
--format pdf
# Word export
python code/scripts/export_document.py \
--input proposal.md \
--format docx
```
## File Structure
```
09-ourdigital-backoffice/
├── code/
│ ├── SKILL.md
│ └── scripts/
│ ├── generate_quote.py
│ ├── create_proposal.py
│ ├── cost_analysis.py
│ └── export_document.py
├── desktop/SKILL.md
├── shared/
│ ├── references/
│ │ └── pricing-guide.md
│ └── templates/
│ ├── quote-template.md
│ ├── proposal-template.md
│ └── contract-template.md
└── docs/CHANGELOG.md
```
## Quick Commands
| Command | Action |
|---------|--------|
| "ourdigital 견적서 [서비스]" | Generate quote |
| "ourdigital proposal [client]" | Create proposal |
| "ourdigital 비용 분석 [project]" | Cost-benefit analysis |

View File

@@ -0,0 +1,231 @@
---
name: ourdigital-backoffice
description: |
Business document creation for OurDigital consulting services.
Activated with "ourdigital" keyword for business documents.
Triggers (ourdigital or our prefix):
- "ourdigital quote", "our quote"
- "ourdigital 견적서", "our 견적서"
- "ourdigital proposal", "our proposal"
- "ourdigital 비용 분석", "our 비용 분석"
Features:
- Quote/estimate generation
- Service proposal creation
- Contract draft (requires legal review)
- Cost-benefit analysis
version: "1.0"
author: OurDigital
environment: Desktop
---
# OurDigital Backoffice
Create business documents for OurDigital consulting services.
## Activation
Activate with "ourdigital" or "our" prefix:
- "ourdigital 견적서" / "our 견적서"
- "ourdigital proposal" / "our proposal"
- "our cost analysis [project]"
## Important Notice
⚠️ **Legal Disclaimer**: Contract drafts require professional legal review before use. This skill provides templates and structure only.
## Document Types
### 1. Quote/Estimate (견적서)
**Purpose**: Service pricing and scope summary
**Structure:**
```
견적서 번호: OD-YYYY-NNN
발행일: YYYY-MM-DD
유효기간: 30일
1. 고객 정보
- 회사명, 담당자, 연락처
2. 서비스 개요
- 프로젝트명
- 서비스 범위 요약
3. 세부 항목
| 항목 | 상세 | 수량 | 단가 | 금액 |
|------|------|------|------|------|
4. 합계
- 소계, VAT, 총액
5. 결제 조건
- 선금/잔금 비율
- 결제 방법
6. 특이사항
- 포함/미포함 사항
```
### 2. Service Proposal (서비스 제안서)
**Purpose**: Detailed service offering and value proposition
**Structure:**
```
1. Executive Summary
- 핵심 제안 1-2문단
2. 고객 상황 이해
- 현재 과제
- 니즈 분석
3. 제안 서비스
- 서비스 범위
- 접근 방법
- 예상 산출물
4. 프로젝트 계획
- 일정표
- 마일스톤
- 체크포인트
5. 투입 리소스
- 담당자 프로필
- 역할 분담
6. 비용 및 조건
- 비용 구조
- 결제 조건
7. 기대 효과
- 예상 성과
- ROI 추정
8. 왜 OurDigital인가
- 차별점
- 관련 경험
```
### 3. Contract Draft (계약서 초안)
**Purpose**: Service agreement framework
⚠️ **반드시 법률 전문가 검토 필요**
**Structure:**
```
제1조 (목적)
제2조 (용어의 정의)
제3조 (계약 기간)
제4조 (서비스 범위)
제5조 (대금 및 지급 조건)
제6조 (권리와 의무)
제7조 (비밀유지)
제8조 (지적재산권)
제9조 (계약의 해지)
제10조 (손해배상)
제11조 (분쟁 해결)
제12조 (일반 조항)
```
### 4. Cost-Benefit Analysis (비용 분석)
**Purpose**: ROI and investment justification
**Structure:**
```
1. 프로젝트 개요
- 목적 및 범위
2. 비용 분석
| 항목 | 초기비용 | 연간비용 | 3년 TCO |
3. 예상 효과
| 효과 | 정량적 가치 | 연간 효과 |
4. ROI 계산
- 투자회수기간
- NPV, IRR
5. 리스크 분석
- 잠재 리스크
- 완화 방안
6. 권장 사항
```
## Service Catalog
OurDigital standard service offerings:
### SEO Services
| Service | Description | Duration | Price Range |
|---------|-------------|----------|-------------|
| Technical Audit | 기술 SEO 진단 | 1-2주 | 300-500만원 |
| On-Page Optimization | 콘텐츠 최적화 | 월간 | 150-300만원/월 |
| Local SEO | 로컬 검색 최적화 | 월간 | 100-200만원/월 |
### Data & Analytics
| Service | Description | Duration | Price Range |
|---------|-------------|----------|-------------|
| GTM Setup | 태그 관리 구축 | 2-4주 | 200-400만원 |
| GA4 Implementation | 분석 환경 구축 | 1-3주 | 150-300만원 |
| Dashboard Development | 대시보드 개발 | 2-4주 | 300-600만원 |
### Consulting
| Service | Description | Duration | Price Range |
|---------|-------------|----------|-------------|
| Brand Consulting | 브랜드 전략 | 프로젝트 | 500-1000만원 |
| Marketing Strategy | 마케팅 전략 | 프로젝트 | 300-700만원 |
| Data Strategy | 데이터 전략 | 프로젝트 | 400-800만원 |
### Training
| Service | Description | Duration | Price Range |
|---------|-------------|----------|-------------|
| Workshop | 반일/전일 워크샵 | 4-8시간 | 100-200만원 |
| Corporate Training | 기업 교육 | 다회차 | 50-100만원/회 |
## Quick Commands
| Command | Action |
|---------|--------|
| "ourdigital 견적서 [서비스]" | Generate quote |
| "ourdigital proposal [client]" | Create proposal |
| "ourdigital 계약서 초안" | Contract template |
| "ourdigital 비용 분석 [project]" | Cost-benefit analysis |
## Workflow
### Phase 1: Requirement Gathering
- Client information
- Service scope
- Timeline requirements
- Budget constraints
### Phase 2: Document Generation
- Select appropriate template
- Fill with gathered information
- Apply OurDigital branding
### Phase 3: Review & Finalize
- Internal review
- Client discussion points highlight
- Legal review (for contracts)
## References
- `shared/templates/quote-template.md` - 견적서 양식
- `shared/templates/proposal-template.md` - 제안서 양식
- `shared/templates/contract-template.md` - 계약서 양식
- `shared/references/pricing-guide.md` - 가격 가이드
- `01-ourdigital-brand-guide` - 문서 스타일

View File

@@ -0,0 +1,15 @@
name: ourdigital-backoffice
description: |
Business document creation for OurDigital consulting services.
Activated with "ourdigital" keyword.
Triggers:
- "ourdigital quote", "ourdigital 견적서"
- "ourdigital proposal", "ourdigital 제안서"
- "ourdigital contract", "ourdigital 계약서"
allowed-tools:
- Read
- Write
license: Internal-use Only

View File

@@ -0,0 +1,26 @@
# Changelog
All notable changes to ourdigital-backoffice will be documented here.
## [1.0.0] - 2026-01-31
### Added
- Initial skill creation
- Quote generation workflow
- Service proposal creation
- Contract draft template (with legal disclaimer)
- Cost-benefit analysis framework
- Service catalog with pricing
- Desktop and Code versions
- Standardized directory structure
### Files Created
- `desktop/SKILL.md` - Desktop workflow
- `desktop/skill.yaml` - Metadata
- `code/SKILL.md` - Code version with scripts
- `shared/references/pricing-guide.md` - Service pricing
- `shared/templates/quote-template.md` - Quote format
- `shared/templates/proposal-template.md` - Proposal format
- `shared/templates/contract-template.md` - Contract format
- `docs/CHANGELOG.md`
- `README.md`

View File

@@ -0,0 +1,214 @@
# Pricing Guide
OurDigital service pricing and estimation guidelines.
## Pricing Philosophy
- **Value-based pricing**: 성과와 가치 기반
- **Transparency**: 명확한 범위와 산출물
- **Flexibility**: 고객 상황에 맞는 옵션
## Service Categories
### 1. SEO Services
#### Technical SEO Audit
| Scope | Duration | Price |
|-------|----------|-------|
| Small (50 pages) | 1주 | 300만원 |
| Medium (200 pages) | 2주 | 400만원 |
| Large (500+ pages) | 3주 | 500-700만원 |
**Includes:**
- Crawl analysis
- Technical issue identification
- Priority action plan
- Implementation guidance
#### Monthly SEO Management
| Tier | Activities | Price/월 |
|------|------------|----------|
| Basic | Monitoring, reporting | 150만원 |
| Standard | + Content optimization | 250만원 |
| Premium | + Link building strategy | 350만원 |
**Minimum commitment**: 3개월
#### Local SEO
| Scope | Price/월 |
|-------|----------|
| Single location | 100만원 |
| Multi-location (2-5) | 150만원 |
| Enterprise (5+) | 협의 |
### 2. Data & Analytics
#### GTM Implementation
| Complexity | Duration | Price |
|------------|----------|-------|
| Basic (5-10 tags) | 1주 | 200만원 |
| Standard (20-30 tags) | 2주 | 300만원 |
| Complex (50+ tags) | 3-4주 | 400-600만원 |
**Includes:**
- Tag architecture design
- Implementation
- QA testing
- Documentation
#### GA4 Setup
| Scope | Duration | Price |
|-------|----------|-------|
| Basic setup | 3-5일 | 150만원 |
| Enhanced (e-commerce) | 1-2주 | 250만원 |
| Enterprise | 2-3주 | 350-500만원 |
#### Dashboard Development
| Type | Platform | Price |
|------|----------|-------|
| Standard | Looker Studio | 300만원 |
| Custom | Tableau/Power BI | 400-600만원 |
| Executive | Custom design | 500-800만원 |
**Maintenance**: 50만원/월 (optional)
### 3. Consulting Services
#### Brand Consulting
| Engagement | Duration | Price |
|------------|----------|-------|
| Brand audit | 2주 | 300만원 |
| Brand strategy | 4-6주 | 500-700만원 |
| Full rebrand | 8-12주 | 800-1500만원 |
#### Marketing Strategy
| Scope | Duration | Price |
|-------|----------|-------|
| Channel strategy | 2주 | 300만원 |
| Full marketing plan | 4주 | 500만원 |
| Annual roadmap | 6주 | 700만원 |
#### Data Strategy
| Focus | Duration | Price |
|-------|----------|-------|
| Assessment | 2주 | 300만원 |
| Strategy development | 4주 | 500만원 |
| Implementation roadmap | 6주 | 700만원 |
### 4. Training Services
#### Workshops
| Format | Duration | Price |
|--------|----------|-------|
| Half-day | 4시간 | 100만원 |
| Full-day | 8시간 | 180만원 |
| 2-day intensive | 16시간 | 300만원 |
**Includes:**
- Customized content
- Materials
- Follow-up resources
#### Corporate Training
| Package | Sessions | Price |
|---------|----------|-------|
| Starter | 4회 | 300만원 |
| Standard | 8회 | 550만원 |
| Premium | 12회 | 750만원 |
**Per session**: 1.5-2시간
## Pricing Modifiers
### Discounts
| Condition | Discount |
|-----------|----------|
| Annual contract | 10-15% |
| Bundle (3+ services) | 10% |
| Referral client | 5% |
| Non-profit | 20% |
### Surcharges
| Condition | Adjustment |
|-----------|------------|
| Rush delivery (<50% normal) | +30% |
| Weekend/Holiday work | +50% |
| After-hours support | +25% |
| International | +Travel costs |
## Payment Terms
### Standard Terms
| Milestone | Payment |
|-----------|---------|
| Contract signing | 50% |
| Mid-project | 25% (optional) |
| Completion | 50% (or 25%) |
### Monthly Services
- 월초 선불
- 자동이체 할인 (5%)
### Large Projects (>10M)
- 협의 기반 마일스톤 지급
- 최대 4회 분할
## Quote Calculation
### Formula
```
Base Price
+ Scope Adjustments (complexity, size)
+ Rush Fee (if applicable)
- Discounts (bundle, annual, etc.)
= Subtotal
+ VAT (10%)
= Total
```
### Example
```
GTM Implementation (Standard): 3,000,000
+ Complex integrations: +500,000
+ Rush delivery (2주→1주): +900,000
- Annual contract discount: -440,000
= Subtotal: 3,960,000
+ VAT (10%): 396,000
= Total: 4,356,000원
```
## Validity & Updates
- 견적 유효기간: 30일
- 가격표 갱신: 분기별 검토
- 특별 프로모션: 별도 공지
## Competitor Reference
For competitive positioning:
| Service | OurDigital | Market Range |
|---------|------------|--------------|
| SEO Audit | 300-500만 | 200-800만 |
| GTM Setup | 200-400만 | 150-600만 |
| Workshop | 100-180만 | 80-300만 |
**Positioning**: Premium quality, mid-high price range

View File

@@ -0,0 +1,240 @@
# 서비스 제안서 Template
```markdown
---
문서번호: OD-PROP-YYYY-NNN
작성일: YYYY-MM-DD
버전: 1.0
---
# [프로젝트명] 제안서
**고객사**: [고객사명]
**제출일**: YYYY년 MM월 DD일
**제출**: OurDigital
---
## Executive Summary
[고객사]의 [과제/목표]를 해결하기 위해, OurDigital은 [핵심 솔루션]을 제안드립니다.
본 프로젝트를 통해:
- [기대 효과 1]
- [기대 효과 2]
- [기대 효과 3]
을 달성할 수 있습니다.
---
## 1. 고객 상황 이해
### 1.1 현재 상황
[고객사의 현재 상황에 대한 이해]
### 1.2 핵심 과제
| 과제 | 상세 | 영향도 |
|------|------|--------|
| [과제1] | [설명] | High |
| [과제2] | [설명] | Medium |
| [과제3] | [설명] | Medium |
### 1.3 프로젝트 목표
1. [목표 1]
2. [목표 2]
3. [목표 3]
---
## 2. 제안 서비스
### 2.1 서비스 개요
[서비스에 대한 전체적인 설명]
### 2.2 서비스 범위
| 영역 | 포함 내용 | 산출물 |
|------|----------|--------|
| [영역1] | [내용] | [산출물] |
| [영역2] | [내용] | [산출물] |
| [영역3] | [내용] | [산출물] |
### 2.3 접근 방법
**Phase 1: [단계명]** (Week 1-2)
- [활동 1]
- [활동 2]
**Phase 2: [단계명]** (Week 3-4)
- [활동 1]
- [활동 2]
**Phase 3: [단계명]** (Week 5-6)
- [활동 1]
- [활동 2]
---
## 3. 프로젝트 계획
### 3.1 일정표
```
Week 1 ████░░░░░░░░ Phase 1: 착수
Week 2 ████████░░░░ Phase 1: 분석
Week 3 ░░░░████░░░░ Phase 2: 설계
Week 4 ░░░░████████ Phase 2: 개발
Week 5 ░░░░░░░░████ Phase 3: 테스트
Week 6 ░░░░░░░░░░██ Phase 3: 완료
```
### 3.2 마일스톤
| 마일스톤 | 일정 | 산출물 |
|----------|------|--------|
| 킥오프 | Week 1 | 프로젝트 헌장 |
| 중간 점검 | Week 3 | 중간 보고서 |
| 최종 납품 | Week 6 | 최종 산출물 |
### 3.3 의사소통 계획
| 유형 | 빈도 | 참석자 | 방식 |
|------|------|--------|------|
| 주간 리포트 | 주 1회 | PM | 이메일 |
| 진행 미팅 | 격주 | 양사 담당자 | 화상/대면 |
| 이슈 협의 | 수시 | 관련자 | 메신저 |
---
## 4. 투입 리소스
### 4.1 프로젝트 팀
| 역할 | 담당자 | 투입률 | 주요 책임 |
|------|--------|--------|-----------|
| PM | [이름] | 50% | 전체 관리 |
| 전문가 | [이름] | 100% | 실무 수행 |
| QA | [이름] | 30% | 품질 관리 |
### 4.2 담당자 프로필
**[담당자명]** - [역할]
- [경력 요약]
- [관련 프로젝트 경험]
- [보유 자격/스킬]
---
## 5. 비용 및 조건
### 5.1 프로젝트 비용
| 항목 | 금액 | 비고 |
|------|------|------|
| [서비스1] | ₩0,000,000 | |
| [서비스2] | ₩0,000,000 | |
| **소계** | ₩0,000,000 | |
| 부가세 (10%) | ₩000,000 | |
| **총액** | ₩0,000,000 | |
### 5.2 결제 조건
| 시점 | 비율 | 금액 |
|------|------|------|
| 계약 시 | 50% | ₩0,000,000 |
| 완료 시 | 50% | ₩0,000,000 |
### 5.3 계약 조건
- 계약 기간: YYYY.MM.DD ~ YYYY.MM.DD
- 하자보수: 납품 후 1개월
- 비밀유지: 상호 비밀유지 의무
---
## 6. 기대 효과
### 6.1 정량적 효과
| 지표 | 현재 | 목표 | 개선율 |
|------|------|------|--------|
| [지표1] | [현재값] | [목표값] | +00% |
| [지표2] | [현재값] | [목표값] | +00% |
### 6.2 정성적 효과
- [정성적 효과 1]
- [정성적 효과 2]
- [정성적 효과 3]
### 6.3 ROI 추정
| 항목 | 금액/연 |
|------|---------|
| 예상 효과 | ₩00,000,000 |
| 투자 비용 | ₩0,000,000 |
| **ROI** | **000%** |
투자회수기간: 약 N개월
---
## 7. 왜 OurDigital인가
### 7.1 차별화 포인트
1. **[강점 1]**: [설명]
2. **[강점 2]**: [설명]
3. **[강점 3]**: [설명]
### 7.2 관련 경험
| 고객사 | 프로젝트 | 성과 |
|--------|----------|------|
| [고객1] | [프로젝트] | [성과] |
| [고객2] | [프로젝트] | [성과] |
### 7.3 OurDigital 소개
OurDigital은 Data Intelligence 전문 기업 D.intelligence의 컨설팅 브랜드입니다.
- **전문 영역**: SEO, Data Analytics, Brand Marketing
- **철학**: "사람, 디지털, 그리고 문화"
- **강점**: 기술과 비즈니스의 균형 잡힌 시각
---
## 8. 다음 단계
1. 제안서 검토 및 피드백
2. 상세 협의 미팅
3. 계약 체결
4. 프로젝트 착수
### 연락처
**OurDigital**
- 담당: [이름]
- 이메일: [email]
- 전화: [phone]
---
**OurDigital**
*사람, 디지털, 그리고 문화*
www.ourdigital.org
```
## Template Variables
| Variable | Description |
|----------|-------------|
| `[고객사명]` | 고객사 이름 |
| `[프로젝트명]` | 프로젝트 제목 |
| `[과제]` | 해결할 비즈니스 과제 |
| `[핵심 솔루션]` | 제안하는 솔루션 요약 |

View File

@@ -0,0 +1,145 @@
# 견적서 Template
```markdown
---
문서번호: OD-QUOTE-YYYY-NNN
발행일: YYYY-MM-DD
유효기간: 30일
---
# 견적서
## 1. 발신/수신 정보
### 발신
| 항목 | 내용 |
|------|------|
| 상호 | OurDigital (D.intelligence) |
| 대표 | Andrew Yim |
| 연락처 | contact@ourdigital.org |
### 수신
| 항목 | 내용 |
|------|------|
| 회사명 | [고객사명] |
| 담당자 | [담당자명] |
| 연락처 | [이메일/전화] |
---
## 2. 프로젝트 개요
### 프로젝트명
[프로젝트명]
### 서비스 범위 요약
[1-2문장 요약]
---
## 3. 견적 상세
### 서비스 항목
| # | 항목 | 상세 설명 | 수량 | 단가 | 금액 |
|---|------|----------|------|------|------|
| 1 | [서비스1] | [설명] | 1 | ₩0,000,000 | ₩0,000,000 |
| 2 | [서비스2] | [설명] | 1 | ₩0,000,000 | ₩0,000,000 |
| 3 | [서비스3] | [설명] | 1 | ₩0,000,000 | ₩0,000,000 |
### 할인/조정
| 항목 | 내용 | 금액 |
|------|------|------|
| [할인 사유] | [설명] | -₩000,000 |
---
## 4. 합계
| 항목 | 금액 |
|------|------|
| 소계 | ₩0,000,000 |
| 부가세 (10%) | ₩000,000 |
| **총액** | **₩0,000,000** |
---
## 5. 결제 조건
### 결제 일정
| 시점 | 비율 | 금액 |
|------|------|------|
| 계약 시 | 50% | ₩0,000,000 |
| 완료 시 | 50% | ₩0,000,000 |
### 결제 방법
- 계좌이체: [은행] [계좌번호] [예금주]
- 세금계산서 발행
---
## 6. 프로젝트 일정
| 단계 | 기간 | 비고 |
|------|------|------|
| 착수 | Week 1 | 킥오프 미팅 |
| 진행 | Week 2-3 | 주간 리포트 |
| 완료 | Week 4 | 최종 산출물 |
예상 총 기간: [N주]
---
## 7. 포함/미포함 사항
### 포함 사항
- [포함 항목 1]
- [포함 항목 2]
- [포함 항목 3]
### 미포함 사항
- [미포함 항목 1]
- [미포함 항목 2]
- 추가 요청 사항 (별도 견적)
---
## 8. 특이사항
- [특이사항 1]
- [특이사항 2]
- 본 견적서는 발행일로부터 30일간 유효합니다.
---
## 9. 담당자
| 역할 | 이름 | 연락처 |
|------|------|--------|
| 프로젝트 매니저 | [이름] | [이메일] |
| 영업 담당 | [이름] | [이메일] |
---
**OurDigital**
*사람, 디지털, 그리고 문화*
www.ourdigital.org
```
## Usage Notes
### 필수 입력 항목
- [ ] 고객사 정보
- [ ] 서비스 항목 및 금액
- [ ] 프로젝트 일정
- [ ] 포함/미포함 사항
### 자동 계산
- 소계 = Σ(수량 × 단가)
- VAT = 소계 × 10%
- 총액 = 소계 + VAT
### 견적번호 규칙
- Format: OD-QUOTE-YYYY-NNN
- 예: OD-QUOTE-2026-001