xhs-title-copywriter(小红书爆款标题生成器)

ReviewAudited by ClawScan on May 10, 2026.

Overview

This skill is mostly aligned with generating Xiaohongshu titles, but its data-fetching script deliberately disables HTTPS certificate checks when contacting an external service, which makes the fetched data and user keywords less trustworthy.

Install only if you are comfortable running the included Python script and sharing your search keywords with the external trend-data service. Be especially cautious because the script disables HTTPS certificate verification, so fetched data should not be treated as fully trustworthy.

Findings (4)

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

A network attacker or misconfigured endpoint could tamper with returned trend data or observe submitted keywords more easily, causing the agent to base recommendations on untrusted data.

Why it was flagged

The helper script intentionally disables HTTPS hostname and certificate verification while contacting the external trend-data service.

Skill content
context.check_hostname = False
context.verify_mode = ssl.CERT_NONE
Recommendation

Only install if you are comfortable with this network behavior; the maintainer should use normal verified HTTPS or clearly justify and constrain this workaround.

What this means

Search terms, product names, or campaign topics you provide may be shared with the external service.

Why it was flagged

The user’s keyword is sent to a third-party API endpoint to retrieve trend data.

Skill content
base_url = "https://onetotenvip.com/skill/cozeSkill/getXhsCozeSkillData"
params = {
    "keyword": keyword,
    "source": "小红书爆款标题创作-ClawHub"
}
Recommendation

Avoid entering confidential product launches or sensitive marketing plans unless you trust the external data provider.

What this means

If external trend content contains misleading or prompt-like text, the agent could accidentally treat it as relevant context rather than just source data.

Why it was flagged

The agent is instructed to read generated Markdown reports based on external trend data and use them as analysis context.

Skill content
读取生成的 `关键词_爆款数据.md`(或 workflow 指定路径),用于分析与引用真实 `photoId` 链接。
Recommendation

Treat fetched report contents as untrusted reference material and verify important titles, links, and statistics before using them publicly.

What this means

Users may not realize from registry metadata that Python/script execution is part of normal use.

Why it was flagged

The skill documents a Python dependency and helper-script execution, while the registry install requirements list no required binaries or install spec.

Skill content
dependency:
  python:
    - requests>=2.28.0
Recommendation

Review the included script before running it and prefer a package with complete runtime and dependency declarations.