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,33 @@
# Notion
> MCP tool documentation for saving competitor intelligence 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: "Competitor Intelligence"
- Audit ID format: COMP-YYYYMMDD-NNN
## Examples
```
# Create competitor intelligence report
mcp__notion__notion-create-pages(
database_id="2c8581e5-8a1e-8035-880b-e38cefc2f3ef",
properties={
"Issue": {"title": [{"text": {"content": "경쟁사 분석 보고서 - 2025-01-15"}}]},
"Site": {"url": "https://example.com"},
"Category": {"select": {"name": "Competitor Intelligence"}},
"Priority": {"select": {"name": "High"}},
"Found Date": {"date": {"start": "2025-01-15"}},
"Audit ID": {"rich_text": [{"text": {"content": "COMP-20250115-001"}}]}
}
)
```