Web3 Daily

v2.1.1

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...

0· 132·1 current·1 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description promise (daily Web3 digest, KOL sentiment, BTC/ETH prices) matches the runtime instructions: the SKILL.md explicitly directs the agent to call a third‑party API to retrieve the digest. The network permission and external service (j4y-production.up.railway.app) are consistent with the described capability. No unexplained credentials, binaries, or system paths are requested.
Instruction Scope
The instructions are narrowly scoped: they require a single POST to the stated API with only a language field, parsing the JSON 'digest' field, and returning its contents verbatim. The workflow does not ask the agent to read local files, environment variables, or other system state. The requirement to execute the real API call (do not simulate) is explicit but coherent with the skill's promise.
Install Mechanism
This is instruction‑only (no install spec, no code files to execute). No installers, downloads, or archive extraction are present, which minimizes installation risk.
Credentials
The skill declares no required environment variables or credentials and the claw.json documents that only 'language_preference' is shared with the external service. There are no disproportionate or unrelated secrets requested.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or system settings. Autonomous invocation is allowed by platform default but not combined with high privilege or credential access.
Assessment
This skill is coherent: it simply asks the agent to POST a language flag to a third‑party API and display the returned 'digest'. Before installing, consider that (1) the service endpoint (https://j4y-production.up.railway.app) is a third‑party backend hosted on Railway — the operator could log requests and responses, so avoid sending any private or sensitive content through this skill; (2) the skill's guarantees (no personal data sent) are based on the provided instructions and metadata — you should verify the backend operator (GitHub repo owner) and review the service's privacy practices if you need higher assurance; and (3) the skill enforces returning raw API content, so availability or correctness depends entirely on that external service. If the skill ever requested API keys, local file access, or other credentials, or if the endpoint were an obscure/personal IP/shortened URL, reclassification to 'suspicious' would be warranted.

Like a lobster shell, security has layers — review code before you run it.

latestvk979kqdvbr3f8dez1tw19hnnpn83y7pj

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

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

VersionWordsBest For
Full (/digest/public)~4000-5000Detailed analysis, desktop reading
Compact (/digest/compact)~2500Quick 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):

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:

curl -s -X POST "https://j4y-production.up.railway.app/api/v1/digest/public" \
  -H "Content-Type: application/json" \
  -d '{"language": "en"}'
  1. Parse the JSON response and extract the digest field

  2. 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:

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:

curl -s -X POST "https://j4y-production.up.railway.app/api/v1/digest/compact" \
  -H "Content-Type: application/json" \
  -d '{"language": "en"}'
  1. Parse the JSON response and extract the digest field

  2. 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:

{
  "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

ErrorAction
Service unavailableTell user: "J4Y service is temporarily unavailable, please try again later"
API returns errorShow error message, suggest retry
TimeoutTell 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.

Files

5 total
Select a file
Select a file to preview.

Comments

Loading comments…