51 lines
2.3 KiB
Markdown
51 lines
2.3 KiB
Markdown
---
|
|
description: Keyword strategy and research for SEO campaigns
|
|
---
|
|
|
|
# SEO Keyword Strategy
|
|
|
|
Keyword expansion, intent classification, clustering, and competitor gap analysis. Supports Korean market with Naver autocomplete.
|
|
|
|
## Triggers
|
|
- "keyword research", "keyword strategy", "키워드 리서치"
|
|
|
|
## Capabilities
|
|
|
|
1. **Keyword Expansion** - Seed keyword expansion with matching, related, and suggested terms
|
|
2. **Intent Classification** - Classify keywords as informational, navigational, commercial, or transactional
|
|
3. **Topic Clustering** - Group keywords into topic clusters with volume aggregation
|
|
4. **Korean Suffix Expansion** - Expand with Korean suffixes (추천, 가격, 후기, 잘하는곳, 부작용, 전후)
|
|
5. **Volume Comparison** - Compare search volume across Korea vs global markets
|
|
6. **Keyword Gap Analysis** - Find keywords competitors rank for but target does not
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Basic keyword research
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/19-seo-keyword-strategy/code/scripts/keyword_researcher.py \
|
|
--keyword "치과 임플란트" --country kr --json
|
|
|
|
# Korean market with suffix expansion
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/19-seo-keyword-strategy/code/scripts/keyword_researcher.py \
|
|
--keyword "치과 임플란트" --country kr --korean-suffixes --json
|
|
|
|
# Volume comparison Korea vs global
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/19-seo-keyword-strategy/code/scripts/keyword_researcher.py \
|
|
--keyword "dental implant" --country kr --compare-global --json
|
|
|
|
# Keyword gap vs competitor
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/19-seo-keyword-strategy/code/scripts/keyword_gap_analyzer.py \
|
|
--target https://example.com --competitor https://competitor.com --json
|
|
|
|
# Multiple competitors with minimum volume filter
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/19-seo-keyword-strategy/code/scripts/keyword_gap_analyzer.py \
|
|
--target https://example.com --competitor https://comp1.com \
|
|
--competitor https://comp2.com --min-volume 100 --json
|
|
```
|
|
|
|
## Output
|
|
- Keyword list with volume, KD, CPC, intent, and cluster assignment
|
|
- Topic clusters with aggregated volume
|
|
- Gap keywords with opportunity scores
|
|
- Reports saved to Notion SEO Audit Log (Category: Keyword Research, ID: KW-YYYYMMDD-NNN)
|