Back to skill
v0.1.0

Seo Optimizer

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 4:56 AM.

Analysis

The skill appears to do the disclosed SEO analysis and sitemap-generation work, with only normal local script and file-access cautions.

GuidanceThis skill looks appropriate for SEO auditing and sitemap generation. Before installing or using it, note that it runs local Python scripts over website files and can write a sitemap file, so point it only at the intended site directory and review any generated SEO changes before publishing.

Findings (3)

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.

Abnormal behavior control

Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.

Unexpected Code Execution
SeverityLowConfidenceHighStatusNote
SKILL.md
python scripts/seo_analyzer.py <directory_or_file>
python scripts/generate_sitemap.py <directory> <base_url> [output_file]

The skill explicitly instructs running local Python helper scripts. This is central to the SEO analysis and sitemap purpose, but it is still local code execution.

User impactThe skill may run included scripts on files or folders you specify for SEO analysis.
RecommendationRun it only against the intended website files and review generated output before publishing it.
Tool Misuse and Exploitation
SeverityLowConfidenceHighStatusNote
scripts/generate_sitemap.py
for root, dirs, files in os.walk(directory):
...
with open(output_file, 'w', encoding='utf-8') as f:

The sitemap script recursively scans a user-provided directory for HTML files and writes an output file. This is expected for sitemap generation, but path selection controls what is scanned and where output is written.

User impactIf pointed at a broad or unintended directory, it may include more local HTML files than expected or overwrite the chosen sitemap output file.
RecommendationUse a specific website build/public directory and an explicit, safe output path such as the site’s intended sitemap.xml location.
Agentic Supply Chain Vulnerabilities
SeverityInfoConfidenceHighStatusNote
metadata
Source: unknown
Homepage: none
No install spec — this is an instruction-only skill.

The artifact provenance is limited: no source repository or homepage is listed. The included files are simple and static scan results are clean, so this is a review note rather than a concern.

User impactIt may be harder to independently verify the publisher or update history of the skill.
RecommendationReview the included scripts before use and prefer trusted or source-linked skills when provenance is important.