Web3 Daily
Follow the market, not the noise. Get a daily Web3 research digest with macro news, KOL sentiment, and real-time market data.
What You Get
- - 📊 Real-time market data — BTC/ETH prices, 24h change, Fear & Greed Index
- 📰 Macro news analysis — 5-8 key events from 170+ sources
- 📡 KOL sentiment — What Chinese + English crypto Twitter is saying
- 🌐 Bilingual — Available in English or Chinese
No personal data required. No API keys needed.
Two Versions Available
| Version | Words | Best For |
|---|
Full (/digest/public) | ~4000-5000 | Detailed analysis, desktop reading |
Compact (/digest/compact) |
~2500 | Quick reading, Telegram push |
How This Skill Works
This skill connects to a live backend service that:
- 1. Aggregates 170+ news sources every 6 hours
- Monitors 50+ KOL Twitter accounts (Chinese + English)
- Fetches real-time market data (BTC/ETH prices, Fear & Greed Index)
- Uses AI to generate comprehensive analysis
You cannot replicate this data by yourself. You MUST call the API.
Privacy
✅ Zero personal data collected — This skill only fetches public market data
✅ No wallet address needed — Pure public information
✅ No local files created — Nothing stored on your machine
✅ All traffic encrypted — HTTPS only
Trigger Conditions
Use this skill when user message contains:
- - "Web3 digest" / "crypto digest" / "crypto news"
- "/web3" / "/digest"
- "What's happening in crypto today"
- "今天加密市场怎么样"
- "给我 Web3 日报"
- "简版日报" / "compact digest" (for compact version)
Workflow A: Full Digest (Default)
⚠️ CRITICAL: You MUST execute the curl command below. DO NOT generate fake/simulated content.
Steps:
- 1. Tell user: "Fetching latest Web3 digest..."
- 2. MUST EXECUTE this curl command (do not skip or simulate):
For Chinese output (default):
CODEBLOCK0
For English output:
CODEBLOCK1
- 3. Parse the JSON response and extract the
digest field
- 4. Display the EXACT content from
digest field to user (do not modify or summarize)
Workflow B: Compact Digest (For Quick Reading / Push)
Trigger: User asks for "简版" / "compact" / "short version" / "quick digest"
Steps:
- 1. Tell user: "Fetching compact Web3 digest..."
- 2. MUST EXECUTE this curl command(推荐
/digest/compact;/digest/public/compact 为兼容别名):
For Chinese output:
CODEBLOCK2
For English output:
CODEBLOCK3
- 3. Parse the JSON response and extract the
digest field
- 4. Display the EXACT content from
digest field to user
Compact version features:
- - ~2500 words (50-60% of full version)
- No URL links (cleaner for messaging apps)
- Keeps core insights: 3 themes, KOL sentiment summary, risks & opportunities
- Table format for quick scanning
Expected Response:
CODEBLOCK4
❌ DO NOT:
- - Generate your own digest content
- Summarize or paraphrase the API response
- Skip the API call and make up data
- Return "example" or "simulated" content
✅ MUST:
- - Execute the actual curl command
- Return the exact
digest content from API response - Include real BTC/ETH prices and Fear & Greed Index from the response
Language Support
Detect user's language preference:
- - If user speaks Chinese → use INLINECODE9
- If user speaks English → use INLINECODE10
- If unclear, default to Chinese
Error Handling
| Error | Action |
|---|
| Service unavailable | Tell user: "J4Y service is temporarily unavailable, please try again later" |
| API returns error |
Show error message, suggest retry |
| Timeout | Tell user: "Request timed out, the service may be busy, please try again" |
Example Conversations
Full Digest:
CODEBLOCK5
Compact Digest:
User: 给我简版日报
Assistant: 正在获取精简版 Web3 日报...
Assistant: [Display compact digest with key insights]
Data Sources
- - News: The Block, CoinDesk, Decrypt, Cointelegraph, and 160+ more
- KOLs: 50+ Chinese + English crypto Twitter accounts
- Market: CoinGecko, CoinMarketCap (prices), Alternative.me (Fear & Greed Index)
Updated every 6 hours.
Web3 日报
跟随市场,而非噪音。 获取每日 Web3 研究摘要,包含宏观新闻、KOL 情绪和实时市场数据。
你将获得
- - 📊 实时市场数据 — BTC/ETH 价格、24小时涨跌幅、恐惧与贪婪指数
- 📰 宏观新闻分析 — 来自170+来源的5-8个关键事件
- 📡 KOL 情绪 — 中英文加密推特正在讨论的内容
- 🌐 双语支持 — 提供英文或中文版本
无需个人数据。无需 API 密钥。
两个版本可选
| 版本 | 字数 | 最佳用途 |
|---|
| 完整版 (/digest/public) | ~4000-5000 | 详细分析,桌面阅读 |
| 精简版 (/digest/compact) |
~2500 | 快速阅读,Telegram 推送 |
技能工作原理
此技能连接到一个实时后端服务,该服务:
- 1. 每6小时聚合170+新闻来源
- 监控50+ KOL 推特账号(中英文)
- 获取实时市场数据(BTC/ETH 价格、恐惧与贪婪指数)
- 使用 AI 生成综合分析
你无法自行复制这些数据。你必须调用 API。
隐私
✅ 零个人数据收集 — 此技能仅获取公开市场数据
✅ 无需钱包地址 — 纯公开信息
✅ 不创建本地文件 — 不会在你的机器上存储任何内容
✅ 所有流量加密 — 仅使用 HTTPS
触发条件
当用户消息包含以下内容时使用此技能:
- - Web3 digest / crypto digest / crypto news
- /web3 / /digest
- Whats happening in crypto today
- 今天加密市场怎么样
- 给我 Web3 日报
- 简版日报 / compact digest(用于精简版)
工作流 A:完整版日报(默认)
⚠️ 关键:你必须执行下面的 curl 命令。不要生成虚假/模拟内容。
步骤:
- 1. 告知用户:正在获取最新 Web3 日报...
- 2. 必须执行此 curl 命令(不要跳过或模拟):
中文输出(默认):
bash
curl -s -X POST https://j4y-production.up.railway.app/api/v1/digest/public \
-H Content-Type: application/json \
-d {language: zh}
英文输出:
bash
curl -s -X POST https://j4y-production.up.railway.app/api/v1/digest/public \
-H Content-Type: application/json \
-d {language: en}
- 3. 解析 JSON 响应并提取 digest 字段
- 4. 向用户展示 digest 字段中的确切内容(不要修改或总结)
工作流 B:精简版日报(用于快速阅读/推送)
触发条件:用户要求简版/compact/short version/quick digest
步骤:
- 1. 告知用户:正在获取精简版 Web3 日报...
- 2. 必须执行此 curl 命令(推荐 /digest/compact;/digest/public/compact 为兼容别名):
中文输出:
bash
curl -s -X POST https://j4y-production.up.railway.app/api/v1/digest/compact \
-H Content-Type: application/json \
-d {language: zh}
英文输出:
bash
curl -s -X POST https://j4y-production.up.railway.app/api/v1/digest/compact \
-H Content-Type: application/json \
-d {language: en}
- 3. 解析 JSON 响应并提取 digest 字段
- 4. 向用户展示 digest 字段中的确切内容
精简版特点:
- - ~2500字(完整版的50-60%)
- 无 URL 链接(更适合消息应用)
- 保留核心洞察:3个主题、KOL 情绪总结、风险与机会
- 表格格式便于快速浏览
预期响应:
json
{
success: true,
digest: ---\n\n# 📅 Web3 日报 | 2026-03-31\n\n---\n\n## 📊 市场概览\n\n
大盘行情:\n-
BTC: $67,100 (+0.55%)\n-
ETH: $2,031 (+1.16%)\n\n...,
cached: true,
generated_at: 2026-03-31T10:00:00Z,
language: zh
}
❌ 禁止:
- - 生成你自己的日报内容
- 总结或改写 API 响应
- 跳过 API 调用并编造数据
- 返回示例或模拟内容
✅ 必须:
- - 执行实际的 curl 命令
- 返回 API 响应中 digest 的确切内容
- 包含响应中的真实 BTC/ETH 价格和恐惧与贪婪指数
语言支持
检测用户的语言偏好:
- - 如果用户说中文 → 使用 language: zh
- 如果用户说英文 → 使用 language: en
- 如果不确定,默认使用中文
错误处理
| 错误 | 操作 |
|---|
| 服务不可用 | 告知用户:J4Y 服务暂时不可用,请稍后重试 |
| API 返回错误 |
显示错误信息,建议重试 |
| 超时 | 告知用户:请求超时,服务可能繁忙,请重试 |
示例对话
完整版日报:
用户:Whats happening in crypto today?
助手:正在获取最新 Web3 日报...
助手:[显示包含详细分析的完整日报]
精简版日报:
用户:给我简版日报
助手:正在获取精简版 Web3 日报...
助手:[显示包含关键洞察的精简版日报]
数据来源
- - 新闻:The Block、CoinDesk、Decrypt、Cointelegraph 等160+来源
- KOL:50+中英文加密推特账号
- 市场:CoinGecko、CoinMarketCap(价格)、Alternative.me(恐惧与贪婪指数)
每6小时更新一次。