2.7 KiB
2.7 KiB
description
| description |
|---|
| SEO reporting dashboard and executive reports |
SEO Reporting Dashboard
Aggregate all SEO skill outputs into executive reports and interactive HTML dashboards.
Triggers
- "SEO report", "SEO dashboard", "보고서"
Capabilities
- Report Aggregation - Collect and normalize outputs from skills 11-33 into unified structure
- Cross-Skill Health Score - Weighted scores across technical, on-page, performance, content, links, keywords
- HTML Dashboard - Self-contained Chart.js dashboard with gauge, line, bar, pie, and radar charts
- Executive Report - Korean-language summaries tailored to audience (C-level, marketing, technical)
- Priority Issues - Top issues ranked across all audit dimensions
- Trend Analysis - Period-over-period comparison narrative with audit timeline
Scripts
# Aggregate all skill outputs for a domain
python /Users/ourdigital/Project/our-claude-skills/custom-skills/34-seo-reporting-dashboard/code/scripts/report_aggregator.py \
--domain https://example.com --json
# Aggregate with date range filter
python /Users/ourdigital/Project/our-claude-skills/custom-skills/34-seo-reporting-dashboard/code/scripts/report_aggregator.py \
--domain https://example.com --from 2025-01-01 --to 2025-03-31 --json
# Generate HTML dashboard
python /Users/ourdigital/Project/our-claude-skills/custom-skills/34-seo-reporting-dashboard/code/scripts/dashboard_generator.py \
--report aggregated_report.json --output dashboard.html
# C-level executive summary (Korean)
python /Users/ourdigital/Project/our-claude-skills/custom-skills/34-seo-reporting-dashboard/code/scripts/executive_report.py \
--report aggregated_report.json --audience c-level --output report.md
# Marketing team report
python /Users/ourdigital/Project/our-claude-skills/custom-skills/34-seo-reporting-dashboard/code/scripts/executive_report.py \
--report aggregated_report.json --audience marketing --output report.md
# Technical team report
python /Users/ourdigital/Project/our-claude-skills/custom-skills/34-seo-reporting-dashboard/code/scripts/executive_report.py \
--report aggregated_report.json --audience technical --output report.md
Output
- Aggregated JSON report with overall health score, category scores, top issues/wins
- Self-contained HTML dashboard (responsive, no external dependencies except Chart.js CDN)
- Korean executive summary in Markdown (tailored by audience level)
- Saved to Notion SEO Audit Log (Category: SEO Dashboard, Audit ID: DASH-YYYYMMDD-NNN)
Workflow
- Run audits with individual skills (11-33)
- Aggregate with
report_aggregator.py - Generate dashboard and/or executive report
- Share HTML dashboard or Markdown report with stakeholders