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>
56 lines
1.2 KiB
Markdown
56 lines
1.2 KiB
Markdown
---
|
|
description: Seo Gateway Architect command
|
|
---
|
|
|
|
# SEO Gateway Architect
|
|
|
|
Keyword strategy and content architecture for gateway pages.
|
|
|
|
## Triggers
|
|
- "keyword strategy", "SEO planning", "게이트웨이 전략"
|
|
|
|
## Capabilities
|
|
|
|
1. **Keyword Analysis** - Volume, difficulty, intent
|
|
2. **LSI Keywords** - Related semantic keywords
|
|
3. **Long-tail Opportunities** - Location + service combinations
|
|
4. **Content Architecture** - Recommended H1-H3 structure
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Analyze keyword
|
|
python custom-skills/17-seo-gateway-architect/code/scripts/keyword_analyzer.py \
|
|
--topic "눈 성형"
|
|
|
|
# With location targeting
|
|
python custom-skills/17-seo-gateway-architect/code/scripts/keyword_analyzer.py \
|
|
--topic "눈 성형" --market "강남" --output strategy.json
|
|
```
|
|
|
|
## Output
|
|
|
|
```
|
|
# Keyword Analysis Report
|
|
|
|
## Primary Keyword: 강남 눈 성형
|
|
- Search Volume: 12,000
|
|
- Difficulty: 65/100
|
|
- Intent: Informational
|
|
|
|
## LSI Keywords
|
|
1. 쌍꺼풀 수술 - Volume: 8,000
|
|
2. 눈매교정 - Volume: 5,500
|
|
...
|
|
|
|
## Recommendations
|
|
1. Focus on educational content
|
|
2. Include FAQ schema markup
|
|
3. Target long-tail keywords for quick wins
|
|
```
|
|
|
|
## Workflow
|
|
1. Run keyword analysis
|
|
2. Review strategy output
|
|
3. Hand off to `/seo-gateway-builder` for content
|