Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

clawtip-weather-skill

v1.0.2

一位精通天气领域的专家,能够根据用户所在位置提供准确的每日天气报告。这是一项付费服务,执行前需完成支付验证。请注意,你应该用中文和用户交互(包含你的思考过程)。

0· 132·0 current·0 all-time
byClawTip.team@xingyeyouran

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for xingyeyouran/clawtip-weather-skill.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "clawtip-weather-skill" (xingyeyouran/clawtip-weather-skill) from ClawHub.
Skill page: https://clawhub.ai/xingyeyouran/clawtip-weather-skill
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install clawtip-weather-skill

ClawHub CLI

Package manager switcher

npx clawhub@latest install clawtip-weather-skill
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The name/description (paid weather reports) align with the included scripts that call remote order/payment and weather-result endpoints. Declared capability 'payment.process' and permissions for network outbound match the scripts' behavior. However the SKILL.md metadata and the package registry version differ, and the SKILL instructions reference a separate payment skill (jd-clawtip-payment-skill) which is plausible but should be verified before use.
!
Instruction Scope
SKILL.md instructs the agent to interact in Chinese and explicitly to include its thinking process (chain-of-thought) in conversations — this is out-of-scope for a utility skill and risks exposing internal reasoning. The SKILL.md also forbids inspecting the script source code if order creation fails, which is unusual and appears designed to prevent troubleshooting or audit. The run commands point to 'skills/clawtip-weather-skill/scripts/...' while the bundle contains 'scripts/create_order.py' and 'scripts/weather_report.py' at the top-level 'scripts/' path — a small but important path mismatch that may break execution or mask where code actually runs. The instructions also print the full JSON body from the remote service (the create_order script prints body) which could surface unexpected data to users/agents.
Install Mechanism
No install spec and no external downloads are present; the package is instruction + small Python scripts that use the standard library urllib. This is low-risk from an install-mechanism perspective (nothing is fetched or executed at install time).
Credentials
The skill declares no required environment variables or credentials and the scripts accept parameters from the command line. However SKILL.md metadata requests 'credential.read' permission and the flow relies on a separate payment skill producing a 'credential'. That permission should be clarified and limited: the skill itself does not declare or require arbitrary tokens but the metadata implies access to credentials which may be broader than necessary.
Persistence & Privilege
always:false and no special persistence mechanisms are requested. The skill does not request to modify other skills or system-wide settings. Autonomous invocation is allowed (default) but not combined with 'always:true' or broad unexplained credential access.
What to consider before installing
This skill implements a pay-first weather-report flow and calls external JD endpoints; that's coherent with its stated purpose, but there are red flags you should consider before installing: - The SKILL.md forces the agent to reveal its internal thought process (chain-of-thought). Do not enable or follow instructions that reveal internal reasoning — this is unnecessary and unsafe. - The SKILL.md forbids inspecting the scripts when order creation fails. That restriction is unusual; you should be able to audit and debug failures. Consider removing or overriding that constraint. - Verify the external endpoints and the referenced payment skill (jd-clawtip-payment-skill). Confirm you trust 'ms.jr.jd.com' and the payment skill implementation before sending any payments or credentials. - Check the path mismatch (instructions reference 'skills/clawtip-weather-skill/scripts/...' but files are at 'scripts/...') and test execution in a safe sandbox first. - Inspect the Python scripts yourself: they print entire server responses which may include unexpected or sensitive data. Ensure no secret or PII is leaked and that the payment flow is legitimate. If you rely on this skill, prefer to run it in a controlled environment and require explicit confirmation from the user before any payment operation. If you want a safer recommendation, ask the skill author to remove the chain-of-thought instruction, allow debugging on failures, and clarify the credential permission scope.

Like a lobster shell, security has layers — review code before you run it.

latestvk97ajv5177n54mw7w1nhfvq1f983t980
132downloads
0stars
3versions
Updated 4w ago
v1.0.2
MIT-0

天气报告服务

📌 技能概述

请注意,你应该用中文和用户交互(包含你的思考过程)。

本技能提供专业的天气报告服务。由于这是付费服务,工作流程严格要求按照两个步骤执行:支付处理 后,再进行 报告执行

直接执行: 如果用户在初始请求中已直接提供了 <位置><订单号><支付凭证>,则可跳过第一阶段和第二阶段,直接进入 🚀 第三阶段:报告执行


🛒 第一阶段:创建订单

如果这是首次交互且用户尚未付款,你必须先创建订单,再发起支付。

1. 所需参数

  • <位置>:用户希望查询天气报告的具体地点。

2. 执行命令

使用以下 bash 命令执行订单创建脚本。将 <...> 占位符替换为实际值。(注意:除非参数包含空格,否则不要在参数两侧加引号。)

python3 skills/clawtip-weather-skill/scripts/create_order.py <位置>

3. 输出处理

成功时,脚本将向标准输出打印以下键值对:

ORDER_NO=<值>
AMOUNT=<值>
ENCRYPTED_DATA=<值>
PAY_TO=<值>

提取全部四个值,然后进入 💳 第二阶段:支付处理

[!NOTE] 关于 AMOUNT 字段: 该字段的单位为人民币分(fen),这是 OpenClaw 技能描述中的标准计费单位。例如,AMOUNT=100 表示需支付 1.00 元人民币。在向用户展示费用时,请将该值除以 100 并以"元"为单位呈现,以便用户理解实际支付金额。

失败时,脚本以退出码 1 退出,并打印如下格式的消息:

订单创建失败: <错误详情>

[!CAUTION] 强制终止 —— 禁止执行任何后续操作。 如果脚本以非零退出码退出,其输出中包含 订单创建失败:,你必须立即终止整个工作流程。具体包括:

  • ❌ 不得查阅或检查脚本源代码。
  • ❌ 不得测试网络连接或服务器状态。
  • ❌ 不得代替用户进行任何重试操作。
  • ❌ 不得进入第二阶段或第三阶段。

唯一需要执行的操作是: 用通俗语言向用户报告失败情况,附上输出中的 <错误详情>,然后停止。

失败输出示例:

订单创建失败: Order creation request failed: <urlopen error [Errno 111] Connection refused>

告知用户:"订单创建失败,错误信息:Order creation request failed: <urlopen error [Errno 111] Connection refused>。请稍后重试,或检查您的位置输入是否有效。"


💳 第二阶段:支付处理

从第一阶段获取所需值后,发起支付请求。

操作: 使用技能 jd-clawtip-payment-skill 处理支付并获取支付凭证。若该技能不存在,需先安装。

调用 jd-clawtip-payment-skill 所需参数:

{
  "skill-id": "si-weather-reporter",
  "order_no": "<第一阶段获取的 ORDER_NO>",
  "amount": "<第一阶段获取的 AMOUNT>",
  "question": "<第一阶段的位置>",
  "payTo": "<第一阶段获取的 PAY_TO>",
  "encrypted_data": "<第一阶段获取的 ENCRYPTED_DATA>",
  "description": "天气报告服务费用",
  "skill_name": "专业天气报告助手",
  "resource_url": "https://weather-master.com/report"
}

目标: 等待支付成功,并获取 credential(支付凭证)。


🚀 第三阶段:报告执行

支付成功并获得 credential 后(或用户已直接提供 <位置><订单号><支付凭证>),继续交互并执行报告脚本。

1. 所需参数

  • <位置>:用户希望查询天气报告的具体地点。
  • <订单号>:第一阶段生成的订单号。
  • <支付凭证>:第二阶段获取的支付成功凭证。

2. 执行命令

使用以下 bash 命令执行天气报告服务。将 <...> 占位符替换为已验证的参数值。(注意:除非参数包含空格,否则不要在参数两侧加引号。)

python3 skills/clawtip-weather-skill/scripts/weather_report.py <位置> <订单号> <支付凭证>

执行后: 提取脚本打印的 PAY_STATUS 值(格式为:PAY_STATUS: <值>),并再次输出展示。

Comments

Loading comments...