Crypto Daily Report (中文)

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill’s crypto-reporting purpose is coherent, but its instructions include hardcoded Telegram delivery targets and persistent daily scheduling that could post outside a user-selected channel.

Review the destination channel before any send or schedule action. Do not use the hardcoded Telegram ID unless it is actually yours, and make sure you know how to remove the cron job after enabling daily delivery.

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 report could be sent or scheduled to a Telegram channel the user did not intend, using the agent’s available messaging capability.

Why it was flagged

The scheduled delivery example targets a specific Telegram channel ID rather than a placeholder or explicitly user-provided channel, creating risk of posting to an unintended external destination.

Skill content
--target "telegram:-1002009088194" \
  --command "generate-crypto-daily-report"
Recommendation

Remove hardcoded channel defaults, require the user to provide the destination, and ask for explicit confirmation before sending or scheduling messages.

What this means

The agent could continue posting daily reports until the cron job is manually discovered and removed.

Why it was flagged

The skill instructs creation of a persistent daily scheduled task. Scheduled delivery is part of the stated purpose, but the artifacts do not document a removal/disable flow or bounded duration.

Skill content
cron add --name "crypto-daily-report" \
  --schedule "0 0 * * *" \
  --timezone "Asia/Shanghai"
Recommendation

Document how to list and remove the scheduled job, confirm the schedule and target with the user, and consider adding an expiration or opt-out.

What this means

If the connected messaging account or bot has broad posting rights, mistakes could affect more channels than intended.

Why it was flagged

Posting to Telegram or Discord uses delegated messaging/channel authority. This is expected for the skill’s purpose, but users should ensure the authority is limited to intended channels.

Skill content
scheduled crypto news delivery to Telegram/Discord channels
Recommendation

Use least-privileged messaging credentials or bots and verify the exact target channel before enabling delivery.

What this means

Users may need to install or trust external tooling outside the registry’s declared requirements.

Why it was flagged

The README lists required tools, but the registry metadata declares no required binaries or environment requirements. This is mainly an install/review completeness issue.

Skill content
确保已安装依赖:
- `onchainos` CLI 工具
- `curl`
- `web_fetch` 和 `web_search` 工具(OpenClaw 内置)
Recommendation

Declare required tools in metadata/install specs and verify the provenance of any external CLI before using the skill.