Seo Optimizer

PassAudited by ClawScan on May 1, 2026.

Overview

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

This 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.

What this means

The skill may run included scripts on files or folders you specify for SEO analysis.

Why it was flagged

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.

Skill content
python scripts/seo_analyzer.py <directory_or_file>
python scripts/generate_sitemap.py <directory> <base_url> [output_file]
Recommendation

Run it only against the intended website files and review generated output before publishing it.

What this means

If pointed at a broad or unintended directory, it may include more local HTML files than expected or overwrite the chosen sitemap output file.

Why it was flagged

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.

Skill content
for root, dirs, files in os.walk(directory):
...
with open(output_file, 'w', encoding='utf-8') as f:
Recommendation

Use a specific website build/public directory and an explicit, safe output path such as the site’s intended sitemap.xml location.

What this means

It may be harder to independently verify the publisher or update history of the skill.

Why it was flagged

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.

Skill content
Source: unknown
Homepage: none
No install spec — this is an instruction-only skill.
Recommendation

Review the included scripts before use and prefer trusted or source-linked skills when provenance is important.