SEO Starter

PassAudited by VirusTotal on May 9, 2026.

Overview

Type: OpenClaw Skill Name: seo-starter Version: 1.0.2 The SEO Starter skill bundle is a collection of educational resources, checklists, and templates focused on search engine optimization. It includes a Python script (seo_brain_enhance.py) designed to integrate with a 'Company Brain' workspace by querying it for brand-specific SEO context, which is then used to enrich agent prompts. The bundle contains no evidence of data exfiltration, malicious execution, or harmful prompt injection; its instructions and code are entirely consistent with its stated purpose of providing SEO guidance.

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

Using the optional Company Brain integration means another installed local skill or module can affect the SEO helper's behavior.

Why it was flagged

If the helper is used, it imports a Brain module from a local Company Brain workspace that is not included in this package. This is consistent with the documented integration, but the dependency's code and provenance are outside this artifact set.

Skill content
brain_path = Path("/data/.openclaw/workspace/company-brain") ... from brain_wrapper import Brain
Recommendation

Only enable/install the Company Brain integration from a trusted source, and review that package separately before relying on the enhanced workflow.

What this means

Business strategy, keyword plans, or other stored SEO context may be reused in future model prompts if the Brain integration is active.

Why it was flagged

The helper can pull persistent Company Brain content into an SEO prompt. This is useful for personalization, but private or inaccurate stored context could influence recommendations.

Skill content
result = _brain.query("SEO strategy and keyword approach") ... return f"Brand SEO Context:\n{result['context']}..."
Recommendation

Keep sensitive secrets out of SEO memory/Company Brain, review stored context periodically, and treat retrieved memory as advisory rather than automatically authoritative.