get tomorrow weather of beijing , with Chinese almanac information

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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

The skill may contact external services and send a Feishu message when invoked or scheduled.

Why it was flagged

The skill uses external API/search tools and a messaging tool. This is disclosed and aligned with the weather-reminder purpose, but users should confirm the Feishu recipient and allowed tool use.

Skill content
curl -s "https://wttr.in/Beijing?format=j1" ... 使用 `batch_web_search` 搜索 ... 使用 `message` tool,发送给用户 `你的飞书openid`,channel 为 feishu。
Recommendation

Verify the configured recipient, keep the message destination limited to yourself or intended users, and avoid expanding the skill to send broader or public messages without review.

What this means

If users add real API secrets or Feishu identifiers, they should treat them as sensitive configuration.

Why it was flagged

The almanac API example includes optional app credentials, and Feishu delivery requires a recipient identifier. These are purpose-aligned, but they are not declared as required credentials in metadata.

Skill content
app_id=your_app_id&app_secret=your_secret ... 发送给用户 `你的飞书openid`
Recommendation

Store any real API keys or Feishu identifiers in secure configuration rather than hardcoding them into shared instructions or command history.

What this means

The reminder could continue sending daily notifications until the schedule is disabled.

Why it was flagged

The skill describes recurring scheduled execution. This is disclosed and matches the daily reminder purpose, but it is persistent automation.

Skill content
定时任务(主要):每天 18:00 由 cron 自动触发
Recommendation

Ensure any cron or platform schedule is visible to the user and has a clear way to pause, edit, or remove it.