Best use case
Marsbit News Skill is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
name: marsbit-news
Teams using Marsbit News Skill 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/marsbit-news/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How Marsbit News Skill Compares
| Feature / Agent | Marsbit News Skill | 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?
name: marsbit-news
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 Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# Marsbit News Skill
name: marsbit-news
description: Retrieve crypto, blockchain and Web3 news articles and flash updates from Marsbit.Marsbit is a crypto and Web3 media platform providing market news, analysis, and real-time updates.
keywords: crypto, blockchain, web3, bitcoin, ethereum, defi, nft
version: 1.0.0
author: Marsbit
source: https://news.marsbit.co
Marsbit News Skill provides structured crypto news data including:
- latest crypto articles
- full article content
- article search by keyword
- latest flash news
- flash news search
Base API
https://api.marsbit.co/info/ai
---
# Tools
## get_latest_articles
Retrieve the latest Marsbit articles.
Endpoint
GET /articles/latest
Parameters
| name | type | required | description |
|-----|------|----------|-------------|
| limit | integer | no | number of articles to return |
Example
https://api.marsbit.co/info/ai/articles/latest?limit=5
Response Example
{
"data": [
{
"id": "20260310172909758349",
"title": "获顶级风投押注,Zcash原班人马2500万美元「再创业」",
"summary": "...",
"url": "https://news.marsbit.co/20260310172909758349.html",
"publishedAt": "2026-03-10T09:29:10Z",
"source": "Marsbit"
}
]
}
Notes
Returns article metadata only. Use `get_article_detail` to retrieve full content.
---
## get_article_detail
Retrieve the full content of a Marsbit article.
Endpoint
GET /articles/detail
Parameters
| name | type | required | description |
|-----|------|----------|-------------|
| id | string | yes | article id |
Example
https://api.marsbit.co/info/ai/articles/detail?id=20260310163710942215
Response Example
{
"data": {
"id": "20260310163710942215",
"title": "你的AI焦虑,正在被人收割",
"summary": "...",
"url": "https://news.marsbit.co/20260310163710942215.html",
"publishedAt": "2026-03-10T08:37:11Z",
"source": "Marsbit",
"content": "..."
}
}
Notes
Returns full article content.
---
## search_articles
Search Marsbit articles by keyword.
Endpoint
GET /articles/search
Parameters
| name | type | required | description |
|-----|------|----------|-------------|
| query | string | yes | search keyword |
| limit | integer | no | max number of results |
Example
https://api.marsbit.co/info/ai/articles/search?query=BTC&limit=5
---
## get_latest_flashes
Retrieve the latest Marsbit flash news.
Flash news are short real-time updates about the crypto market.
Endpoint
GET /flashes/latest
Parameters
| name | type | required | description |
|-----|------|----------|-------------|
| limit | integer | no | number of flash updates |
Example
https://api.marsbit.co/info/ai/flashes/latest?limit=10
Response Example
{
"data": [
{
"id": "20260310174744190518",
"title": "Wintermute:中东局势升级推动油价冲击,加密资产逆势跑赢",
"url": "https://news.marsbit.co/flash/20260310174744190518.html",
"publishedAt": "2026-03-10T09:47:44Z",
"source": "Marsbit",
"content": "..."
}
]
}
---
## search_flashes
Search Marsbit flash news by keyword.
Endpoint
GET /flashes/search
Parameters
| name | type | required | description |
|-----|------|----------|-------------|
| query | string | yes | search keyword |
| limit | integer | no | max results |
Example
https://api.marsbit.co/info/ai/flashes/search?query=BTC&limit=10
---
# Tool Selection Guide
| user request | tool |
|--------------|------|
| latest crypto articles | get_latest_articles |
| read full article | get_article_detail |
| search topic articles | search_articles |
| latest crypto breaking news | get_latest_flashes |
| search flash news | search_flashes |
---
# Response Guidelines
When presenting results:
1. show title
2. summarize key points
3. include publish time
4. include source
5. include url
Avoid returning full article content unless the user explicitly asks.
---
# Example Prompts
These user requests should trigger this skill.
English examples
- latest crypto news
- latest Marsbit articles
- Bitcoin news
- Ethereum news
- crypto breaking news
- search BTC news
- crypto market updates
Chinese examples
- 最新加密新闻
- Marsbit 最新文章
- BTC 新闻
- ETH 新闻
- 最新快讯
- 比特币新闻
- 加密市场资讯
---
# Time Format
All timestamps use ISO 8601 UTC format.
Example
2026-03-10T09:29:10Z
---
# Error Handling
If `data` is empty, return that no matching results were found.
---
# Source
Marsbit
https://news.marsbit.coRelated Skills
trending-news-aggregator
智能热点新闻聚合器 - 自动抓取多平台热点新闻, AI分析趋势,支持定时推送和热度评分。 核心功能: - 每天自动聚合多平台热点(微博、知乎、百度等) - 智能分类(科技、财经、社会、国际等) - 热度评分算法 - 增量检测(标记新增热点) - AI趋势分析
news-hot-scraper
This skill should be used when users need to scrape hot news topics from Chinese platforms (微博、知乎、B站、抖音、今日头条、腾讯新闻、澎湃新闻), generate summaries, and cite sources. It supports both API-based and direct scraping methods, and offers both extractive and abstractive summarization techniques.
ai-news-brief
自动抓取 AI/算力/大模型/GPU 相关最新资讯简报,使用 Chrome 浏览器自动化绕过反爬,支持多个科技媒体来源,支持PDF生成和邮件推送
ai-news-publisher
AI新闻一键发布技能。从36氪/虎嗅获取AI新闻,改写成爆款文章,发布到微信公众号。触发词:发布AI新闻、公众号发文章、科技新闻发布、爆款文章。
Agent News (Free Tier)
A free AI enriched global news stream for agents, provided by agentnewsapi.com. Powered by $ANA on Solana.
crypto-news-ns3
AI reads 20+ crypto media outlets in real time and ranks every article by importance. No API key, instant access. Binance and CoinGecko use our data. Market sentiment indicators optimized for trading signals and trigger data. Breaking news, coin-level filters, and exchange listing news from CoinMarketCap, Coinbase, Bybit, OKX, Hyperliquid, and Robinhood. Bitcoin (BTC), Ethereum (ETH), Solana (SOL), XRP, Dogecoin (DOGE), BNB, stablecoin (USDT, USDC), DeFi, ETF news, and whale alerts. 16 languages. Four feeds: real-time crypto news ranked by AI, daily market briefing, top stories ranking, and breaking headlines. Built for trading bots, TradingView workflows, and AI agents. Use when the user asks about crypto news, portfolio updates, market briefings, breaking headlines, top stories, or news about specific coins.
financial-news
财经新闻监控技能 - 财经新闻追踪、自动推送、重要新闻提醒
kaspa-news
Kaspa News — let your Claw know everything about Kaspa in one place: latest news, core development updates, ecosystem launches, community talks, and weekly reports summary. Use when someone asks what’s happening with Kaspa now, including dev/builder activity, top tweets, videos, and Reddit updates. No API keys needed.
crypto-news-trader
A Clawhub skill that:
tech-news-digest
Generate tech news digests with unified source model, quality scoring, and multi-format output. Six-source data collection from RSS feeds, Twitter/X KOLs, GitHub releases, GitHub Trending, Reddit, and web search. Pipeline-based scripts with retry mechanisms and deduplication. Supports Discord, email, and markdown templates.
OpenClaw Ecosystem News
**Version:** 1.0.0
free-stock-global-quotes-news
global-quotes: free stock quotes and news. Use when: user asks for global stock price, quote, ticker symbol, or company news for US (e.g. AAPL), HK (0700.HK), or China A-shares (000001.SZ, 600000.SS). Uses free sources: Yahoo/Finnhub for US, Tencent/EastMoney/AkShare for CN/HK.