← 返回 Skills 市场
renyuke-cn

Crypto Daily Report (中文)

作者 RenYuKe-CN · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
247
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install crypto-daily-report-zh
功能描述
Generate and send cryptocurrency daily reports with market overview, fear & greed index, liquidation data, economic calendar, and news aggregation. Use when...
使用说明 (SKILL.md)

Crypto Daily Report Skill

Generate comprehensive cryptocurrency daily reports and send to messaging channels.

Features

  • Market overview (BTC, ETH, SOL, BNB prices)
  • Fear & Greed Index sentiment analysis
  • 24h liquidation statistics
  • Economic calendar (token unlocks, Fed decisions, CPI/GDP releases)
  • Curated news from Cointelegraph and TokenInsight
  • Automated scheduled delivery

Quick Start

Generate Report Now

When user requests a daily report, execute:

# 1. Get prices
onchainos market prices "1:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,501:So11111111111111111111111111111111111111112,56:0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"

# 2. Get BTC price via search
web_search "BTC price today USD"

# 3. Get Fear & Greed Index
curl -s "https://api.alternative.me/fng/?limit=2"

# 4. Get liquidation data
web_search "crypto liquidation 24h today total amount"

# 5. Get news
web_fetch "https://cointelegraph.com/rss"
web_fetch "https://tokeninsight.com/rss/news"

# 6. Get calendar
web_fetch "https://incrypted.com/en/calendar/"

Then assemble and send using message tool.

Setup Scheduled Delivery

For automated daily delivery at 8:00 AM (UTC+8):

cron add --name "crypto-daily-report" \
  --schedule "0 0 * * *" \
  --timezone "Asia/Shanghai" \
  --target "telegram:-1002009088194" \
  --command "generate-crypto-daily-report"

Or use the setup script:

./scripts/setup-cron.sh -1002009088194

Report Format

📰 币圈日报
{Date} {Weekday}

💰 大盘速览
BTC: ${price}
ETH: ${price}
SOL: ${price}
BNB: ${price}

😨 市场情绪
恐慌贪婪指数: {value} {emoji} {classification}
昨天: {value} | 上周: {value} | 上月: {value}
💡 解读: {interpretation}

💥 爆仓数据 (24h)
数据来源: CoinGlass / Gate
总爆仓金额: ~${amount}M
1小时爆仓: ~${amount}M
主要币种: BTC、ETH、SOL、BNB
{alert_message}

📅 重要日历
{calendar_events}

🔥 热点新闻
{numbered_news_items}

⚠️ 免责声明
以上信息仅供参考,不构成投资建议。币圈有风险,投资需谨慎。

Data Sources

Data Source Method
ETH, SOL, BNB onchainos CLI Direct API
BTC Web search Brave Search
Fear & Greed alternative.me REST API
Liquidations Search aggregation Brave Search
News Cointelegraph, TokenInsight RSS feeds
Calendar Incrypted Web scraping

Interpretation Guide

Fear & Greed Index

  • 0-24: Extreme Fear 🔴 (Potential bottom)
  • 25-49: Fear 🟠 (Cautious)
  • 50-74: Greed 🟢 (Optimistic)
  • 75-100: Extreme Greed 🔵 (Potential top)

Calendar Event Icons

  • 🔴 High impact (token unlocks, Fed decisions)
  • 🟡 Medium impact (economic data releases)
  • 📍 Events (conferences, summits)

Scripts

  • scripts/generate-report.sh - Generate single report
  • scripts/setup-cron.sh - Setup automated delivery
  • scripts/test-send.sh - Test send to channel

See references/data-sources.md for detailed API documentation.

安全使用建议
This skill appears to do what it says: collect public crypto data, format a report, and send it to messaging channels. Before installing: 1) Confirm you have the onchainos CLI and understand whether it needs credentials; the skill does not declare any env vars but some data feeds (CoinGlass fallback) may need API keys. 2) Review and change any example channel IDs (the README uses -1002009088194) so you don't accidentally send reports to someone else's Telegram group. 3) Inspect the scripts locally before running them (they are informational reference implementations). 4) If you plan to enable scheduled delivery, explicitly approve the cron setup and the target channel. 5) Prefer installing from a known source/repo (the skill lists a GitHub author in the license/README but registry 'Source' and homepage are empty); verify the upstream repository if possible.
功能分析
Type: OpenClaw Skill Name: crypto-daily-report-zh Version: 1.0.0 The skill is a legitimate tool for generating and scheduling cryptocurrency market reports. It utilizes standard OpenClaw capabilities (web_search, web_fetch) and the onchainos CLI to aggregate public data such as prices, the Fear & Greed Index (via alternative.me), and news RSS feeds. While it includes a hardcoded Telegram channel ID (-1002009088194) in its documentation and scripts (SKILL.md, setup-cron.sh), this serves as a placeholder or default for report delivery and does not involve sensitive data exfiltration or unauthorized access.
能力评估
Purpose & Capability
Name/description (crypto daily reports + scheduled delivery) match the provided scripts and SKILL.md. Required tools referenced (onchainos CLI, curl, web_fetch/web_search, cron, message) are coherent with fetching prices, news, calendar, and sending to messaging channels.
Instruction Scope
SKILL.md instructs the agent to fetch market data (onchainos, web_search, web_fetch), call a public REST API (alternative.me), assemble a report, and send it via the agent's message tool or cron. It does not instruct reading arbitrary local files, harvesting unrelated env vars, or posting data to unknown third‑party endpoints beyond documented news/data sources.
Install Mechanism
No install spec is provided (instruction-only skill with bundled scripts). There are no downloads from external URLs or archive extraction steps—scripts are local reference implementations, not remote installers.
Credentials
The skill declares no required env vars or credentials, which matches most of the content. Note: some referenced data sources (optional CoinGlass API) or the onchainos CLI may require API keys or auth in practice; those credentials are not declared by the skill. The absence of declared env vars is not malicious but you should be prepared to provide keys for services you expect to use.
Persistence & Privilege
always:false and no attempt to modify other skills or system-wide agent config. Cron setup is documented and requires explicit user action (or explicit agent command) to schedule delivery.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install crypto-daily-report-zh
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /crypto-daily-report-zh 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release with market overview, fear & greed index, liquidation data, and news aggregation
元数据
Slug crypto-daily-report-zh
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Crypto Daily Report (中文) 是什么?

Generate and send cryptocurrency daily reports with market overview, fear & greed index, liquidation data, economic calendar, and news aggregation. Use when... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 247 次。

如何安装 Crypto Daily Report (中文)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install crypto-daily-report-zh」即可一键安装,无需额外配置。

Crypto Daily Report (中文) 是免费的吗?

是的,Crypto Daily Report (中文) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Crypto Daily Report (中文) 支持哪些平台?

Crypto Daily Report (中文) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Crypto Daily Report (中文)?

由 RenYuKe-CN(@renyuke-cn)开发并维护,当前版本 v1.0.0。

💬 留言讨论