Clawhub Skill Optimizer

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: clawhub-skill-optimizer Version: 2.0.0 The skill bundle is a growth and SEO optimization tool for OpenClaw agents. It contains Python scripts for analyzing user reviews and fetching trending topics from public APIs (GitHub, Weibo, etc.) to suggest metadata improvements. No malicious behaviors such as data exfiltration, unauthorized execution, or harmful prompt injections were found; the code is well-documented and aligns with its stated purpose.

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

If the examples are run, trend queries and related request metadata may be sent to public third-party services.

Why it was flagged

The reference examples call third-party trend APIs. This is expected for trend tracking, but it means copied examples would make network requests outside ClawHub.

Skill content
url = "https://uapis.cn/api/hotboard" ... r = requests.get(url, params=params, timeout=8)
Recommendation

Use these API examples only when needed, review the third-party service terms/privacy, and avoid sending private review text or confidential skill details.

What this means

A user who copies the example may install a package from the Python package ecosystem without version pinning.

Why it was flagged

The guide references an optional, unpinned package install that is not declared in install metadata. This appears to be documentation rather than automatic installation.

Skill content
Requires: pip install pytrends
Recommendation

Install optional dependencies only when necessary, verify the package source, and pin versions in any real implementation.

What this means

Reports could expose personal or sensitive feedback if the input reviews are private or if reports are shared publicly.

Why it was flagged

The review-analysis templates include user identifiers, ratings, dates, and review text, and generated reports quote review content and users.

Skill content
"user": "user_xxx", "rating": 5, "text": "非常好用!...", "date": "2026-05-01"
Recommendation

Redact usernames and sensitive review details before sharing outputs, and use only review data you are authorized to analyze.

What this means

Public replies or metadata generated from these templates could overpromise future features or exaggerate proof points.

Why it was flagged

A generic response template says a requested feature is already planned for the next version. This may be appropriate if true, but could mislead users if used automatically or without validation.

Skill content
"感谢您的建议!{具体建议}已经在我们的开发计划中,预计在下一个版本中加入。"
Recommendation

Review all generated marketing copy and review responses for accuracy; only make claims or commitments that are true.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If implemented without controls, a trend checker could continue making periodic network requests after the immediate task is done.

Why it was flagged

The reference includes a background polling worker template. It is not runnable as an installed skill here, but copied code could create repeated background activity.

Skill content
import schedule
import time
import threading

def trending_alert_worker(... check_interval_hours=6):
    """
    Background worker that checks for trending keyword matches.
Recommendation

Do not launch background workers automatically; require explicit user approval, provide clear stop controls, and document what is polled and how often.