SEO Audit Report

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: seo-audit-report Version: 1.0.0 The skill bundle is a legitimate SEO auditing tool that crawls websites to analyze technical and on-page SEO factors. The core logic in `scripts/seo_audit.py` uses standard Python libraries (urllib, html.parser) to fetch and parse HTML, and there is no evidence of data exfiltration, malicious execution, or prompt injection.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Running the skill will contact the specified website and may crawl additional pages, which could be inappropriate for sites the user does not own or have permission to test.

Why it was flagged

The script makes outbound requests to the user-supplied URL, which is expected for an SEO crawler but means the agent can generate network traffic to arbitrary audit targets.

Skill content
req = urllib.request.Request(url, headers=headers)
with urllib.request.urlopen(req, timeout=timeout) as resp:
Recommendation

Run it only on authorized websites, keep crawl depth modest, and confirm the target URL before invoking the audit.

What this means

Users have less external context for who maintains the script or where to verify its origin, although the provided artifacts do not show malicious behavior.

Why it was flagged

The skill includes a runnable Python script, but the registry metadata does not provide an external source or homepage for provenance review.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included files before running and prefer skills from maintainers or sources you trust.