60 lines
2.7 KiB
Markdown
60 lines
2.7 KiB
Markdown
---
|
|
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
|
|
|
|
1. **Report Aggregation** - Collect and normalize outputs from skills 11-33 into unified structure
|
|
2. **Cross-Skill Health Score** - Weighted scores across technical, on-page, performance, content, links, keywords
|
|
3. **HTML Dashboard** - Self-contained Chart.js dashboard with gauge, line, bar, pie, and radar charts
|
|
4. **Executive Report** - Korean-language summaries tailored to audience (C-level, marketing, technical)
|
|
5. **Priority Issues** - Top issues ranked across all audit dimensions
|
|
6. **Trend Analysis** - Period-over-period comparison narrative with audit timeline
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# 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
|
|
1. Run audits with individual skills (11-33)
|
|
2. Aggregate with `report_aggregator.py`
|
|
3. Generate dashboard and/or executive report
|
|
4. Share HTML dashboard or Markdown report with stakeholders
|