Add SEO skills 33-34 and fix bugs in skills 19-34

New skills:
- Skill 33: Site migration planner with redirect mapping and monitoring
- Skill 34: Reporting dashboard with HTML charts and Korean executive reports

Bug fixes (Skill 34 - report_aggregator.py):
- Add audit_type fallback for skill identification (was only using audit_id prefix)
- Extract health scores from nested data dict (technical_score, onpage_score, etc.)
- Support subdomain matching in domain filter (blog.ourdigital.org matches ourdigital.org)
- Skip self-referencing DASH- aggregated reports

Bug fixes (Skill 20 - naver_serp_analyzer.py):
- Remove VIEW tab selectors (removed by Naver in 2026)
- Add new section detectors: books (도서), shortform (숏폼), influencer (인플루언서)

Improvements (Skill 34 - dashboard/executive report):
- Add Korean category labels for Chart.js charts (기술 SEO, 온페이지, etc.)
- Add Korean trend labels (개선 중 ↑, 안정 →, 하락 중 ↓)
- Add English→Korean issue description translation layer (20 common patterns)

Documentation improvements:
- Add Korean triggers to 4 skill descriptions (19, 25, 28, 31)
- Expand Skill 32 SKILL.md from 40→143 lines (was 6/10, added workflow, output format, limitations)
- Add output format examples to Skills 27 and 28 SKILL.md
- Add limitations sections to Skills 27 and 28
- Update README.md, CLAUDE.md, AGENTS.md for skills 33-34

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-14 00:01:00 +09:00
parent dbfaa883cd
commit d2d0a2d460
37 changed files with 5462 additions and 56 deletions

View File

@@ -0,0 +1,37 @@
# Ahrefs
> MCP tool documentation for migration planner skill
## Available Commands
- `site-explorer-metrics` - Get current organic metrics (traffic, keywords) for a domain
- `site-explorer-metrics-history` - Get historical organic metrics for pre/post comparison
- `site-explorer-top-pages` - Get top performing pages by traffic for baseline
- `site-explorer-pages-by-traffic` - Get pages ranked by organic traffic for risk scoring
- `site-explorer-organic-keywords` - Get keyword rankings per page
- `site-explorer-referring-domains` - Get referring domain list for risk scoring
- `site-explorer-backlinks-stats` - Get backlink overview for migration impact assessment
## Configuration
- Requires Ahrefs MCP server configured in Claude Desktop
- API access via `mcp__ahrefs__*` tool prefix
## Examples
```
# Get site baseline metrics
mcp__ahrefs__site-explorer-metrics(target="example.com")
# Get top pages for risk scoring
mcp__ahrefs__site-explorer-top-pages(target="example.com", limit=500)
# Get traffic history for pre/post comparison
mcp__ahrefs__site-explorer-metrics-history(target="example.com", date_from="2025-01-01")
# Get backlink stats for a specific page
mcp__ahrefs__site-explorer-backlinks-stats(target="https://example.com/important-page")
# Get keyword rankings
mcp__ahrefs__site-explorer-organic-keywords(target="example.com", limit=200)
```

View File

@@ -0,0 +1,29 @@
# Firecrawl
> MCP tool documentation for URL inventory crawling and redirect verification
## Available Commands
- `firecrawl_crawl` - Crawl entire site to capture all URLs and status codes for migration inventory
- `firecrawl_scrape` - Scrape individual pages to verify redirect health (status codes, chains, final URL)
## Configuration
- Requires Firecrawl MCP server configured in Claude Desktop
- API access via `mcp__firecrawl__*` tool prefix
## Examples
```
# Crawl full site for URL inventory
mcp__firecrawl__firecrawl_crawl(url="https://example.com", limit=5000, scrapeOptions={"formats": ["links"]})
# Verify a redirect
mcp__firecrawl__firecrawl_scrape(url="https://old-example.com/page", formats=["links"])
```
## Notes
- Crawl limit defaults to 5,000 URLs per run
- For larger sites, run multiple crawls with path-based filtering
- Redirect verification returns status_code, final_url, and redirect_chain

View File

@@ -0,0 +1,46 @@
# Notion
> MCP tool documentation for saving migration planning and monitoring reports
## Available Commands
- `notion-create-pages` - Create new pages in the SEO Audit Log database
- `notion-update-page` - Update existing audit entries
- `notion-query-database-view` - Query existing reports
- `notion-search` - Search across Notion workspace
## Configuration
- Database ID: `2c8581e5-8a1e-8035-880b-e38cefc2f3ef`
- All reports saved with Category: "SEO Migration"
- Audit ID format: MIGR-YYYYMMDD-NNN
## Examples
```
# Create migration planning report
mcp__notion__notion-create-pages(
database_id="2c8581e5-8a1e-8035-880b-e38cefc2f3ef",
properties={
"Issue": {"title": [{"text": {"content": "사이트 이전 계획 - example.com - 2025-01-15"}}]},
"Site": {"url": "https://example.com"},
"Category": {"select": {"name": "SEO Migration"}},
"Priority": {"select": {"name": "High"}},
"Found Date": {"date": {"start": "2025-01-15"}},
"Audit ID": {"rich_text": [{"text": {"content": "MIGR-20250115-001"}}]}
}
)
# Create post-migration monitoring report
mcp__notion__notion-create-pages(
database_id="2c8581e5-8a1e-8035-880b-e38cefc2f3ef",
properties={
"Issue": {"title": [{"text": {"content": "이전 모니터링 보고서 - new-example.com - 2025-02-01"}}]},
"Site": {"url": "https://new-example.com"},
"Category": {"select": {"name": "SEO Migration"}},
"Priority": {"select": {"name": "Critical"}},
"Found Date": {"date": {"start": "2025-02-01"}},
"Audit ID": {"rich_text": [{"text": {"content": "MIGR-20250201-001"}}]}
}
)
```