1m-trade-news

1m-trade-news is a skill for Claude Code, Codex from LeoYeAI/openclaw-master-skills. It costs 58 tokens per session (3,761 once invoked), scanned A, original, MIT.

A data-retrieval tool for crypto news and market information from BlockBeats, including news articles, search results, and selected on-chain and financial indicators. It requires a BlockBeats API key.

In plain words
What is it for?
Use it to query crypto news, newsflashes, articles, ETF flows, stablecoin supply, derivatives open interest, M2, DXY, Bitfinex long positions, and other supported datasets.
Why use it?
It brings related crypto reporting and market measurements into one query workflow, instead of requiring separate searches and data sources.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to query crypto news, newsflashes, articles, ETF flows, stablecoin supply, derivatives open interest, M2, DXY, Bitfinex long positions, and other supported datasets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leoyeai/openclaw-master-skills/1m-trade-news
About the project

OpenClaw Master Skills is a curated, regularly updated collection of skills that extends an AI personal assistant platform with capabilities such as research, browser automation, presentation creation, and prompt work. It is intended for people using OpenClaw or MyClaw.ai to give their agents additional tasks and workflows. The catalogue contains many skills and agents from this collection.

LeoYeAI/openclaw-master-skills · 2,141 stars · on GitHub · myclaw.ai

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LeoYeAI/openclaw-master-skills --skill 1m-trade-news
Clone the repo
git clone --depth 1 https://github.com/LeoYeAI/openclaw-master-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 1m-trade-news

README.md
[![agentmods](https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/1m-trade-news/github.svg)](https://agentmods.dev/skills/leoyeai/openclaw-master-skills/1m-trade-news)
Your own site
<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/1m-trade-news"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/1m-trade-news/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for 1m-trade-news

Your own site · 80×15
<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/1m-trade-news"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/1m-trade-news.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,761 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00058 $0.03761
Opus 5 $0.00029 $0.01880
Sonnet 5 $0.00012 $0.00752
Haiku 4.5 $0.00006 $0.00376

Measured 13d ago against content hash c73e374aefa9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

1m-trade-news scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- curl
skills/1m-trade/skills/1m-trade-news/SKILL.md · 371 lines

How it starts

The opening of the file, as written. The whole thing — 371 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BlockBeats API Skill

Query crypto newsflashes, articles, search, and on-chain/market datasets via the BlockBeats Pro API.

Get an API key (follow these steps; no manual user setup needed)

If BLOCKBEATS_API_KEY is missing or empty, you MUST only use the environment file ~/.openclaw/.1m-trade/.env to store/read it. Do NOT read or touch any other files.

  1. Check ~/.openclaw/.1m-trade/.env for BLOCKBEATS_API_KEY.
  2. If BLOCKBEATS_API_KEY is missing or empty:
    • Run exactly this curl to fetch a free API key:
      curl --request GET --url "https://api-pro.theblockbeats.info/v1/api-key/free"
      
    • Parse the response and extract data.api_key as BLOCKBEATS_API_KEY.
    • In ~/.openclaw/.1m-trade/.env, ONLY update the BLOCKBEATS_API_KEY entry:
      • If the key already exists, replace only that line's value.
      • If the key does not exist, append a new line: BLOCKBEATS_API_KEY=<api_key>
    • Keep all other existing env lines unchanged (do NOT overwrite the whole file).
    • Do not print the API key in chat/logs.
  3. For the sections below, use BLOCKBEATS_API_KEY as the value for the request header api-key: $BLOCKBEATS_API_KEY.

Request format

Base URL: https://api-pro.theblockbeats.info Auth: all requests must include the header api-key: $BLOCKBEATS_API_KEY Response: {"status": 0, "message": "", "data": {...}}status == 0 means success

Scenario 1: Market snapshot

Triggers: "how is the market today", "market snapshot", "daily overview", etc.

Run the following 4 requests in parallel:

# 1) Bottom/top indicator (sentiment)
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
  "https://api-pro.theblockbeats.info/v1/data/bottom_top_indicator"

# 2) Important newsflashes (latest 5)
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
  "https://api-pro.theblockbeats.info/v1/newsflash/important" \
  -G --data-urlencode "size=5" --data-urlencode "lang=cn"

# 3) BTC ETF net flow
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
  "https://api-pro.theblockbeats.info/v1/data/btc_etf"

# 4) Daily on-chain tx volume
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
  "https://api-pro.theblockbeats.info/v1/data/daily_tx"

Read the full file on GitHub · 371 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 371 lines · 58 tokens per session scan A c73e374aefa9

Subscribe to this mod's changes

1m-trade-news is a skill published in the GitHub repository LeoYeAI/openclaw-master-skills (2,141 stars, last pushed 1mo ago), licensed MIT. It adds 58 tokens to every session and 3,761 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

most-important-thing-in-investing-howard-marks

Apply Howard Marks investing judgment for second-level thinking, price versus value, risk control, cycles, contrarianism, and defensive investing.

simbajigege/book2skills · 39 tokens

outsiders-ceo-capital-allocation-thorndike

Apply The Outsiders CEO framework to assess capital allocation, per-share value creation, buybacks, decentralization, and rational leadership.

simbajigege/book2skills · 39 tokens

analyzing-financial-reports

Analyzes Chinese public company financial statements (balance sheet, income statement, cash flow) to assess asset quality, profit authenticity, cash flow health, solvency, and overall investment value. Use when the user provides financial data or a company name and asks whether financials are healthy, whether profits…

simbajigege/book2skills · 105 tokens

stock-picking-by-common-stocks-uncommon-profits

Apply Philip Fisher's growth stock investment framework from Common Stocks and Uncommon Profits. Use this skill whenever a user wants to evaluate whether a company is a worthy long-term growth investment, assess management quality, gather competitive intelligence via scuttlebutt, decide when to buy an outstanding…

simbajigege/book2skills · 161 tokens

stripe

Read Stripe account state from a terminal or agent: balance, payment intents, and subscriptions — and perform guarded mutations like canceling a subscription — backed by a bundled stripe-cli script that is read-only first and gates every state-changing command behind a --dry-run/--yes confirmation. Use when an agent…

magnus919/agent-skills · 116 tokens

tushare-finance

A Python connection to Tushare Pro, a service that provides data about Chinese financial markets through many data interfaces.

StanleyChanH/Tushare-Finance-Skill-for-Claude-Code · 74 tokens