Add SEO skills 19-28, 31-32 with full Python implementations

12 new skills: Keyword Strategy, SERP Analysis, Position Tracking,
Link Building, Content Strategy, E-Commerce SEO, KPI Framework,
International SEO, AI Visibility, Knowledge Graph, Competitor Intel,
and Crawl Budget. ~20K lines of Python across 25 domain scripts.
Updated skill 11 pipeline table and repo CLAUDE.md.
Enhanced skill 18 local SEO workflow from jamie.clinic audit.

Note: Skill 26 hreflang_validator.py pending (content filter block).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-13 12:05:59 +09:00
parent 159f7ec3f7
commit a3ff965b87
125 changed files with 25948 additions and 173 deletions

View File

@@ -0,0 +1,77 @@
---
name: seo-knowledge-graph
description: |
Knowledge Graph and entity SEO analysis. Triggers: knowledge panel, entity SEO, knowledge graph, PAA, FAQ schema, Wikipedia, Wikidata, brand entity.
---
# Knowledge Graph & Entity SEO
Analyze brand entity presence in Google Knowledge Graph, Knowledge Panels, People Also Ask (PAA), and FAQ rich results. Check entity attribute completeness, Wikipedia/Wikidata presence, and Korean equivalents (Naver knowledge iN, Naver encyclopedia).
## Capabilities
### Knowledge Graph Analysis
- Knowledge Panel detection and attribute extraction
- Entity attribute completeness scoring (name, description, logo, type, social profiles, website, founded, CEO)
- Wikipedia article presence check
- Wikidata entity presence check (QID lookup)
- Naver encyclopedia (네이버 백과사전) presence
- Naver knowledge iN (지식iN) presence
### Entity SEO Audit
- People Also Ask (PAA) monitoring for brand-related queries
- FAQ schema presence tracking (FAQPage schema -> SERP appearance)
- Entity markup audit (Organization, Person, LocalBusiness schema on website)
- Social profile linking validation (sameAs in schema)
- Brand SERP analysis (what appears when you search the brand name)
- Entity consistency across web properties
## Workflow
### Knowledge Graph Analysis
1. Use **WebSearch** to search for the entity name on Google
2. Analyze search results for Knowledge Panel indicators
3. Use **WebFetch** to check Wikipedia article existence
4. Use **WebFetch** to check Wikidata QID existence
5. Use **WebFetch** to check Naver encyclopedia and 지식iN
6. Score entity attribute completeness
7. Save report to **Notion** SEO Audit Log
### Entity SEO Audit
1. Use **WebFetch** to fetch the website and extract JSON-LD schemas
2. Validate Organization/Person/LocalBusiness schema completeness
3. Check sameAs links accessibility
4. Use **WebSearch** to search brand name and analyze SERP features
5. Monitor PAA questions for brand keywords
6. Use **Ahrefs serp-overview** for SERP feature detection
7. Save report to **Notion** SEO Audit Log
## Tools Used
| Tool | Purpose |
|------|---------|
| WebSearch | Search for entity/brand to detect Knowledge Panel |
| WebFetch | Fetch Wikipedia, Wikidata, Naver pages, website schemas |
| Ahrefs `serp-overview` | SERP feature detection for entity keywords |
| Notion | Save audit reports to SEO Audit Log database |
## Notion Output
All reports must be saved to the OurDigital SEO Audit Log database.
| Field | Value |
|-------|-------|
| Database ID | `2c8581e5-8a1e-8035-880b-e38cefc2f3ef` |
| Category | Knowledge Graph & Entity SEO |
| Audit ID | KG-YYYYMMDD-NNN |
Report content should be written in Korean (한국어), keeping technical English terms as-is.
## Reference Scripts
Located in `code/scripts/`:
- `knowledge_graph_analyzer.py` -- Knowledge Panel and entity presence analysis
- `entity_auditor.py` -- Entity SEO signals and PAA/FAQ audit
- `base_client.py` -- Shared async client utilities

View File

@@ -0,0 +1,8 @@
name: seo-knowledge-graph
description: |
Knowledge Graph and entity SEO analysis. Triggers: knowledge panel, entity SEO, knowledge graph, PAA, FAQ schema, Wikipedia, Wikidata, brand entity.
allowed-tools:
- mcp__ahrefs__*
- mcp__notion__*
- WebSearch
- WebFetch

View File

@@ -0,0 +1,29 @@
# Ahrefs MCP Tools
## serp-overview
Retrieve SERP feature overview for specified keywords. Used to detect Knowledge Panel, PAA, FAQ rich results, and other SERP features for entity-related queries.
### Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| keyword | string | Yes | Keyword to check SERP features for |
| country | string | No | Country code (default: us) |
### Usage
```
mcp__ahrefs__serp-overview(keyword="Samsung Electronics", country="us")
```
### Relevant SERP Features
- Knowledge Panel
- People Also Ask (PAA)
- FAQ Rich Results
- Featured Snippet
- Sitelinks
- Image Pack
- Video Carousel
- Local Pack

View File

@@ -0,0 +1,54 @@
# Notion MCP Tools
## Save Audit Report
Save Knowledge Graph & Entity SEO audit reports to the OurDigital SEO Audit Log database.
### Database Configuration
| Field | Value |
|-------|-------|
| Database ID | `2c8581e5-8a1e-8035-880b-e38cefc2f3ef` |
| URL | https://www.notion.so/dintelligence/2c8581e58a1e8035880be38cefc2f3ef |
### Required Properties
| Property | Type | Description |
|----------|------|-------------|
| Issue | Title | Report title (Korean + date) |
| Site | URL | Entity website URL |
| Category | Select | Knowledge Graph & Entity SEO |
| Priority | Select | Critical / High / Medium / Low |
| Found Date | Date | Audit date (YYYY-MM-DD) |
| Audit ID | Rich Text | Format: KG-YYYYMMDD-NNN |
### Priority Mapping
| Overall Score | Priority |
|---------------|----------|
| 0-25 | Critical |
| 26-50 | High |
| 51-75 | Medium |
| 76-100 | Low |
### Example Usage
```
mcp__notion__notion-create-pages({
"parent": {"database_id": "2c8581e5-8a1e-8035-880b-e38cefc2f3ef"},
"properties": {
"Issue": {"title": [{"text": {"content": "Knowledge Graph 엔티티 분석 - 2025-01-15"}}]},
"Site": {"url": "https://example.com"},
"Category": {"select": {"name": "Knowledge Graph & Entity SEO"}},
"Priority": {"select": {"name": "High"}},
"Found Date": {"date": {"start": "2025-01-15"}},
"Audit ID": {"rich_text": [{"text": {"content": "KG-20250115-001"}}]}
}
})
```
### Language Guidelines
- Report content in Korean (한국어)
- Keep technical English terms as-is (Knowledge Panel, Knowledge Graph, PAA, FAQ, schema)
- URLs and code remain unchanged

View File

@@ -0,0 +1,62 @@
# WebSearch & WebFetch Tools
## WebSearch
Search the web for entity/brand information to detect Knowledge Panel signals, PAA questions, and SERP features.
### Usage Patterns
#### Knowledge Panel Detection
```
WebSearch("Samsung Electronics")
WebSearch("삼성전자")
```
#### PAA Question Discovery
```
WebSearch("what is Samsung Electronics")
WebSearch("Samsung Electronics reviews")
WebSearch("Samsung Electronics alternatives")
```
#### Brand SERP Analysis
```
WebSearch("Brand Name official")
WebSearch("Brand Name site:wikipedia.org")
```
## WebFetch
Fetch and analyze specific pages for entity presence data.
### Usage Patterns
#### Wikipedia Check
```
WebFetch("https://en.wikipedia.org/wiki/Samsung_Electronics", "Check if article exists and extract entity information")
```
#### Wikidata Check
```
WebFetch("https://www.wikidata.org/w/api.php?action=wbsearchentities&search=Samsung&language=en&format=json", "Find Wikidata QID for entity")
```
#### Naver Encyclopedia
```
WebFetch("https://terms.naver.com/search.naver?query=삼성전자", "Check Naver encyclopedia entry")
```
#### Naver Knowledge iN
```
WebFetch("https://kin.naver.com/search/list.naver?query=삼성전자", "Check knowledge iN entries count")
```
#### Website Schema Extraction
```
WebFetch("https://example.com", "Extract JSON-LD structured data, especially Organization, Person, LocalBusiness schemas and sameAs links")
```
#### FAQ Schema Check
```
WebFetch("https://example.com/faq", "Check for FAQPage JSON-LD schema markup")
```