Agent skill
seo-report
Generate a client-facing SEO report from the latest crawl data. Produces a professional HTML report with executive summary, key metrics, top issues, and comparison charts. Trigger with 'seo report', 'generate seo report', 'client seo report', or 'seo summary'.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/seo-report
SKILL.md
SEO Report
Generate a professional, client-facing SEO report from Whispering Wombat crawl data. Outputs an HTML file suitable for sharing via PageDrop or email.
Required MCP Tools
- Whispering Wombat:
whispering_crawls,whispering_issues,whispering_links,whispering_content - Brain (optional):
brain_site_get,brain_client_get - PageDrop (optional): For publishing shareable URL
Input
$ARGUMENTS should be a domain name (e.g., abpsychology.au).
Workflow
Step 1: Get Latest Crawl
whispering_crawls list — find the most recent completed crawl for this domain.
If no crawl exists, inform the user and suggest running /seo-audit {domain} first.
Step 2: Get Client Context
If Brain is available:
brain_site_get { domain }— client name, contact, business type- Use client name in the report header
Step 3: Gather Report Data
Collect all data needed for the report:
whispering_issues overview— scores, status codes, response timeswhispering_issues summary— issue counts by typewhispering_links stats— link healthwhispering_content sitemaps— sitemap statuswhispering_content structure— site depth- If previous crawl exists:
whispering_crawls compare— changes
Step 4: Generate HTML Report
Create a self-contained HTML file with inline CSS. Save to .claude/artifacts/seo-report-{domain}-{date}.html.
Report structure:
<!DOCTYPE html>
<html lang="en-AU">
<head>
<meta charset="UTF-8">
<title>SEO Report: {domain}</title>
<style>/* Inline professional styling */</style>
</head>
<body>
<!-- Header with Jezweb branding -->
<!-- Executive Summary (1 paragraph) -->
<!-- Key Metrics Grid (4 cards: pages, issues, score, speed) -->
<!-- Top 5 Issues with fix instructions -->
<!-- Comparison with previous crawl (if available) -->
<!-- Detailed Findings by Category -->
<!-- Footer with date and disclaimer -->
</body>
</html>
Design guidelines:
- Professional, clean layout — no playful colours or emojis
- Monochrome/slate colour scheme matching Jezweb brand
- Tables for data, simple bar charts via CSS (no JS libraries)
- Print-friendly (reasonable page breaks, no fixed widths)
- Jezweb logo in header:
https://www.jezweb.com.au/wp-content/uploads/2021/11/Jezweb-Logo-White-Transparent.svg
Step 5: Offer to Share
After generating the HTML:
- Show the file path to the user
- Offer to publish via PageDrop for a shareable URL
- If PageDrop:
pages { action: "create", content: htmlContent, slug: "seo-{domain}" }
Executive Summary Template
Write the executive summary as one short paragraph covering:
- Overall site health assessment (good/needs attention/critical)
- Number of pages analysed
- Most impactful finding
- Comparison trend (improving/declining/stable) if previous data exists
Example:
"{Domain} is in good technical health with {X} pages analysed. The site scores well on core SEO fundamentals but has {N} critical issues that should be addressed — most notably {top issue}. Compared to the previous audit, the site has {improved/declined} with {N} new issues and {N} resolved."
Notes
- Australian English throughout
- Keep language accessible — the client may not be technical
- Focus on "what to fix and why" not "what's wrong"
- Avoid jargon: "search engines can't find this page" not "noindex directive present"
- Include estimated impact: "fixing this could improve your visibility for local searches"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?