seo-aeo-audit
Audited by Runlayer on Feb 23, 2026
Malicious tool definition detected
Tool: SKILL.md [1/3] Description: --- name: seo-aeo-audit description: Optimize for search engine visibility, ranking, and AI citations.
Tool: SKILL.md [2/3] Description: ``` --- ## International SEO ### Hreflang tags ```html <!-- For multi-language sites --> <link rel="alternate" hreflang="en" href="https://example.com/page"> <link rel="alternate" hreflang="es" href="https://example.com/es/page"> <link rel="alternate" hreflang="fr" href="https://example.com/fr/page"> <link rel="alternate" hreflang="x-default" href="https://example.com/page"> ``` ### Language declaration ```html <html lang="en"> <!-- or --> <html lang="es-MX"> ``
Tool: SKILL.md [3/3] Description: tools.
Malicious tool definition detected
Tool: references/json-ld-templates.md Description: # JSON-LD templates ## FAQPage ```html <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [{ "@type": "Question", "name": "What is the average cost of local SEO services?", "acceptedAnswer": { "@type": "Answer", "text": "Most small businesses invest $1,000–$3,000/month for local SEO covering technical fixes, Google Business Profile optimization, citations, and content.
Malicious tool definition detected
Tool: scripts/lighthouse.sh Description: #!/usr/bin/env bash set -euo pipefail if !
Malicious tool definition detected
Tool: scripts/pagespeed.sh Description: #!/usr/bin/env bash set -euo pipefail if [ "$#" -lt 1 ]; then echo "Usage: scripts/seo/pagespeed.sh <url|urls.txt> [output_dir]" >&2 exit 1 fi if [ -z "${PAGESPEED_API_KEY:-}" ]; then echo "Missing PAGESPEED_API_KEY env var." >&2 echo "Get an API key from Google Cloud Console, then run:" >&2 echo " PAGESPEED_API_KEY=...
Malicious tool definition detected
Tool: scripts/search-console-export.mjs Description: #!/usr/bin/env node import fs from "node:fs"; import path from "node:path"; const args = process.argv.slice(2); const [siteUrl, startDate, endDate] = args; if (!siteUrl || !startDate || !endDate) { console.error( "Usage: scripts/seo/search-console-export.mjs <siteUrl> <startDate> <endDate> [outputDir]" ); console.error("Example: scripts/seo/search-console-export.mjs https://example.com 2024-01-01 2024-01-31"); process.exit(1); } const outputDi