web3-daily
Web3 public research digest service. Provides daily digest with macro news, KOL sentiment, and real-time market data (BTC/ETH prices, Fear & Greed Index). No personal data required. Use when user asks for Web3 news, crypto digest, or says /web3.
Best use case
web3-daily is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Web3 public research digest service. Provides daily digest with macro news, KOL sentiment, and real-time market data (BTC/ETH prices, Fear & Greed Index). No personal data required. Use when user asks for Web3 news, crypto digest, or says /web3.
Teams using web3-daily should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/web3-daily/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How web3-daily Compares
| Feature / Agent | web3-daily | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Web3 public research digest service. Provides daily digest with macro news, KOL sentiment, and real-time market data (BTC/ETH prices, Fear & Greed Index). No personal data required. Use when user asks for Web3 news, crypto digest, or says /web3.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agent for Product Research
Browse AI agent skills for product research, competitive analysis, customer discovery, and structured product decision support.
AI Agent for SaaS Idea Validation
Use AI agent skills for SaaS idea validation, market research, customer discovery, competitor analysis, and documenting startup hypotheses.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
SKILL.md Source
# 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
2. Monitors 50+ KOL Twitter accounts (Chinese + English)
3. Fetches real-time market data (BTC/ETH prices, Fear & Greed Index)
4. 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):
```bash
curl -s -X POST "https://j4y-production.up.railway.app/api/v1/digest/public" \
-H "Content-Type: application/json" \
-d '{"language": "zh"}'
```
For English output:
```bash
curl -s -X POST "https://j4y-production.up.railway.app/api/v1/digest/public" \
-H "Content-Type: application/json" \
-d '{"language": "en"}'
```
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:
```bash
curl -s -X POST "https://j4y-production.up.railway.app/api/v1/digest/compact" \
-H "Content-Type: application/json" \
-d '{"language": "zh"}'
```
For English output:
```bash
curl -s -X POST "https://j4y-production.up.railway.app/api/v1/digest/compact" \
-H "Content-Type: application/json" \
-d '{"language": "en"}'
```
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:
```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"
}
```
### ❌ 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 `"language": "zh"`
- If user speaks English → use `"language": "en"`
- 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:**
```
User: What's happening in crypto today?
Assistant: Fetching latest Web3 digest...
Assistant: [Display full digest with detailed analysis]
```
**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.Related Skills
daily-report-generator
Automatically generate daily/weekly work reports from git commits, calendar events, and task lists. Use when you need to quickly create professional work reports without manual effort.
email-daily-summary
Automatically logs into email accounts (Gmail, Outlook, QQ Mail, etc.) and generates daily email summaries. Use when the user wants to get a summary of their emails, check important messages, or create daily email digests.
daily-every
每天早上生成简报:上海天气 + V2EX 热帖前 5 条。 Use when: 用户说"生成今日简报",或 cron 在早上 8 点触发。 NOT for: 详细的天气预报或深度新闻分析。
web3-daily-mcp
MCP Server for Web3 Daily - Real-time Web3 research digest with macro news, KOL sentiment, market data, and personalized wallet analysis. This is an MCP server that provides tools for AI agents to fetch real data from the J4Y backend.
daily-fun-content
每日趣味内容生成器 - 每天早上搜索网络,预缓存一天的笑话、热梗、聊天技巧。包括搞笑段子、网络热梗解释、高情商对话示例。用 cron 触发,内容缓存到文件,心跳时随机取用。
obsidian-daily
Manage Obsidian Daily Notes via obsidian-cli. Create and open daily notes, append entries (journals, logs, tasks, links), read past notes by date, and search vault content. Handles relative dates like "yesterday", "last Friday", "3 days ago". Requires obsidian-cli installed via Homebrew (Mac/Linux) or Scoop (Windows).
web3-weekly-report
自动抓取数据并生成 Web3 行业资本运作周报,涵盖融资事件、监管动态、上市公司 DAT 动态、并购交易与 RWA 项目追踪。当用户提到"写周报"、"生成周报"、"整理本周融资"、"Web3 周报"、"资本运作周报"、"采编周报",或请求整理加密行业本周动态时,立即激活此 skill。即使用户只说"帮我写本周的",只要上下文涉及 Web3、加密、融资、RWA、DAT,也应激活。
name: web3-weekly-report
description: 自动抓取数据并生成 Web3 行业资本运作周报,涵盖融资事件、监管动态、上市公司 DAT 动态、并购交易与 RWA 项目追踪。当用户提到"写周报"、"生成周报"、"整理本周融资"、"Web3 周报"、"资本运作周报"、"采编周报",或请求整理加密行业本周动态时,立即激活此 skill。即使用户只说"帮我写本周的",只要上下文涉及 Web3、加密、融资、RWA、DAT,也应激活。
daily-brief
Send a daily operational brief from your self-hosted OpenClaw to Telegram — agent health, unresolved issues, and weekly evolution highlights, every morning.
dailybit-tech-digest
Curated daily digest from 92 top tech blogs (Andrej Karpathy's list) with AI-generated Chinese summaries, hierarchical tags, and personalized recommendations. Triggers: "今日技术博客", "高质量技术文章", "tech blog digest", "优质博客推荐", "技术发展趋势", "AI行业动态", "每日技术简报", "中文科技摘要", "top tech blogs today", "curated tech reading", "what's trending in tech", "developer daily briefing", "有什么值得看的技术文章", "最近有什么技术趋势", "帮我看看今天的博客", "优质英文博客中文速览".
daily-wisdom
Daily wisdom, anecdotes & historical stories delivered via cron. Use when: "daily anecdote", "daily wisdom", "wisdom cron", "daily story", "morning wisdom", setting up recurring cultural/historical content delivery. Don't use when: one-off trivia (just answer directly), news digests, social media posts. Outputs: A rich daily message with original-language quote, story, and modern connection. Writes to history file to prevent repeats.
CPMO Daily Report - 终端虾每日汇报技能
_最后更新:2026-03-15(合并 cpmo.md 内容)_